摘要:
一、UITextField(1)初始化UITextFieldUITextField* text = [[UITextField alloc] initWithFrame:CGRectMake(10, 50, 300, 30)]; text.borderStyle = UITextBorderStyleRoundedRect; text.autocorrectionType = UITextAutocorrectionTypeYes; text.placeholder = @"XXXXXXX"; text.returnKeyType = UIReturnKeyDone; .. 阅读全文