我试图在 iPad 和 iPhone 的 UITextField 的 Tap 或 Click 上显示 UIAlertView。我制作了一个 IBAction 并使用 UITextField 的 Tap Down 事件附加它。
但它不能正常工作,意味着并非总是如此,在 iPhone 的情况下,在 iPad 的情况下不工作
- (IBAction) TopuchState
{
//function code
}
请帮助我怎么能这样做。
我试图在 iPad 和 iPhone 的 UITextField 的 Tap 或 Click 上显示 UIAlertView。我制作了一个 IBAction 并使用 UITextField 的 Tap Down 事件附加它。
但它不能正常工作,意味着并非总是如此,在 iPhone 的情况下,在 iPad 的情况下不工作
- (IBAction) TopuchState
{
//function code
}
请帮助我怎么能这样做。
由于您已经订阅了 UITextField 委托,请实现此方法:
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Alert Message" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
[alert show];
return YES;
}
尝试在特定文本字段开始编辑时添加目标 ( UIControlEventEditingDidBegin
):
[textField1 addTarget:delegate action:@selector(textField1Active:) forControlEvents:UIControlEventEditingDidBegin];
我认为如果您设置委托UITextField
并实现该方法会更容易:
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
然后在该方法中,您可以轻松创建并显示您的UIAlertView
.
祝你好运!
在斯威夫特 3
在 viewDidLoad 方法中为事件 .editingDidBegin 添加特定文本字段的目标
self.textField.addTarget(self, action: #selector(textFieldTouched(_:)), for: UIControlEvents.editingDidBegin)
func textFieldTouched(textField: UITextField) {
//Show AlertView
}
将 TextField 与委托连接,现在调用此函数!!
-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
textView.text=@" ";
return YES;
}