创建一个 UITextField
使用 CGRect 作为框架初始化 UITextField
:
迅速
let textfield = UITextField(frame: CGRect(x: 0, y: 0, width: 200, height: 21))
Objective-C
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 21)];
你还可以在 Interface Builder 中创建 UITextField
: