如何在 IOS 的 UIAlertView 中清除 UITextfield 文本和确定按钮?
Posted
技术标签:
【中文标题】如何在 IOS 的 UIAlertView 中清除 UITextfield 文本和确定按钮?【英文标题】:How to Clear UITextfield Text and Ok button in UIAlertView in IOS? 【发布时间】:2015-03-19 06:14:53 【问题描述】:我创建了密码验证。密码创建成功将显示一个UIAlertView
,当用户按下确定时,密码文本字段将被清除。怎么做?请问有什么例子吗?
【问题讨论】:
【参考方案1】:添加UIAlertViewDelegate
协议:
@interface YourViewController : UIViewController <UIAlertViewDelegate>
显示警报视图使用:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"TITLE_HERE"
message:@"ALERT_MESSAGE HERE."
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
用户点击OK后,该方法会自动调用:
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
// the user clicked OK
if (buttonIndex == 0)
// do something here...
yourTextField.text = nil;
【讨论】:
【参考方案2】:你的问题不清楚。如果您希望在显示 UIAlert 后密码字段文本为空,请添加以下代码使您的密码字段为空。
yourTextField.text = ""
这是一个例子。
if(passwordValid==YES)
UIAlertView *passwordValidated = [[UIAlertView alloc] initWithTitle:@"Password Validated!"
message:@"Your password is successfully validated. Press OK to continue"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
yourTextField.text = "";
[updateMessage show];
【讨论】:
以上是关于如何在 IOS 的 UIAlertView 中清除 UITextfield 文本和确定按钮?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 iOS 中更改 UIAlertView 对话框的颜色?
如何在 IOS 应用程序中使用 UIAlertView 验证登录?
如何从 UIAlertView 迁移(在 iOS8 中已弃用)
如何在 iOS 8 上显示没有按钮的 UIAlertView?