Files
keyboard/keyBoard/ViewController.m

31 lines
657 B
Mathematica
Raw Normal View History

2025-10-27 18:47:18 +08:00
//
// ViewController.m
// keyBoard
//
// Created by on 2025/10/27.
//
#import "ViewController.h"
@interface ViewController ()
2025-10-27 19:42:27 +08:00
@property (nonatomic,strong)UITextField *textField;
2025-10-27 18:47:18 +08:00
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
2025-10-27 19:42:27 +08:00
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];
2025-10-27 18:47:18 +08:00
}
@end