2

在我的应用程序中,当我尝试编辑(输入一些文本)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;
}
4

1 回答 1

1

只需用你的那个类的方法替换这个方法,

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {

    return YES;
}    
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{

    return YES;
}
于 2013-03-22T06:16:45.843 回答