在我的应用程序中,当我尝试编辑(输入一些文本)UITextField
时,光标只是闪烁,但没有输入任何字符,除了退格(只有当我有一些初始文本时才可能)、返回和切换字符类型。
这就是我声明的方式UITextField
txtmail =[[UITextField alloc]init];
[txtmail setFrame:CGRectMake(288, 51,264, 31)];
[txtmail setBorderStyle:UITextBorderStyleRoundedRect];
[txtmail setText:[NSString stringWithFormat:@"%@",appDelegate.Email]];
[txtmail setFont:[UIFont fontWithName:@"TimesNewRoman" size:14]];
txtmail.textColor =[UIColor grayColor];
txtmail.delegate=self;
[testScroll addSubview:txtmail];
在我的 .h 文件中,我给出了这样的
@interface pot: UIViewController<UITextFieldDelegate>
{
UITextField *txtmail;
}