测试配置

This commit is contained in:
2025-10-27 19:42:27 +08:00
parent c38a09cd8b
commit 5e44ac155b
13 changed files with 430 additions and 142 deletions

View File

@@ -8,7 +8,7 @@
#import "ViewController.h"
@interface ViewController ()
@property (nonatomic,strong)UITextField *textField;
@end
@implementation ViewController
@@ -16,6 +16,14 @@
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor grayColor];
self.textField = [[UITextField alloc] init];
self.textField.frame = CGRectMake(100, 100, 200, 40);
self.textField.layer.borderWidth = 1;
self.textField.layer.borderColor = [UIColor redColor].CGColor;
[self.view addSubview:self.textField];
}