博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIAlertView
阅读量:6707 次
发布时间:2019-06-25

本文共 3186 字,大约阅读时间需要 10 分钟。

  • 警告框的按钮可以设置一个或多个,但是最好不要超过两个,如果设置了两个按钮,一般有一个按钮表示取消。
  • 按钮的 index 按照 cancelButton、otherButton、addButton 的顺序依次类推,起始值为 0。

1、UIAlertView 的创建

  • 1.1 创建时直接添加按钮等信息

    // 设置代理时,需遵守协议 
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"确认退出 ?" message:@"真的要退出吗 ?" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"退出", nil]; // 将 alertView 添加到屏幕上[alertView show];
  • 1.2 先创建,后添加按钮等信息

    // 设置代理时,需遵守协议 
    UIAlertView *alertView = [[UIAlertView alloc] init];alertView.title = @"系统提示";alertView.message = @"您确认删除这篇文章吗";[alertView addButtonWithTitle:@"取消"];[alertView addButtonWithTitle:@"确认"];alertView.cancelButtonIndex = 0;alertView.delegate = self;// 将 alertView 添加到屏幕上[alertView show];

2、UIAlertView 的设置

// 设置样式/*UIAlertViewStyleDefault = 0,             // 不含输入框,默认样式UIAlertViewStyleSecureTextInput,         // 含输入框,密文输入样式UIAlertViewStylePlainTextInput,          // 含输入框,明文输入样式UIAlertViewStyleLoginAndPasswordInput    // 含输入框,登录名和密码输入样式*/alertView.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;// 设置标题alertView.title = @"系统提示";// 设置提示信息alertView.message = @"您确认删除这篇文章吗";// 添加按钮/*需要放在 [alertView show]; 前才起作用*/[alertView addButtonWithTitle:@"下次再登陆"];// 设置左边或最下边位置的按钮/*设置左边或最下边位置的按钮:只有 2 个按钮时,Index 等于 0 或者大于 1 时,cancelButton 按钮显示在左边大于 2 个按钮时,按照 cancelButton、otherButton、addButton 的顺序依次显示在最下边位置。按钮顺序从 0 开始*/alertView.cancelButtonIndex = 0;// 获取指定位置按钮的标题NSString *buttonTitle = [alertView buttonTitleAtIndex:1];// 获取用户名和密码输入框中的内容UITextField *user = [alertView textFieldAtIndex:0];UITextField *pass = [alertView textFieldAtIndex:1];NSString *userString = user.text;NSString *passString = pass.text;// 获取按钮的个数,只读NSInteger numberOfButtons = alertView.numberOfButtons;// 获取除取消按钮外第一个按钮的索引,只读NSInteger firstOtherButtonIndex = alertView.firstOtherButtonIndex;// 获取 alertView 是否已经显示出来,只读BOOL alertViewVisible = alertView.isVisible;// 设置代理,需遵守协议 
alertView.delegate = self;// 显示 alertView[alertView show];// 隐藏 UIAlertView[alertView dismissWithClickedButtonIndex:0 animated:YES];

3、UIAlertView 的协议方法

  • 需遵守协议 UIAlertViewDelegate,并设置代理
// 将要显示,警告框显示前被调用- (void)willPresentAlertView:(UIAlertView *)alertView {}// 已经显示,警告框显示后被调用- (void)didPresentAlertView:(UIAlertView *)alertView {}// 将要结束选择那个按钮,警告框关闭前调用- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex {}// 已经结束选择那个按钮,警告框关闭后调用,警告框显示中应用程序进入睡眠状态时也会被调用- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {}// 点击了那个按钮,触摸警告框中的任意按钮时被调用,比 willDismissWithButtonIndex 方法先被调用- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {// cancelButton 按钮的 index 始终为 0,其它的按照 otherButton、addButton 的顺序依次类推。}// 强制关闭,警告框显示中强制关闭时被调用,例如警告框显示时应用程序突然关闭等场所- (void)alertViewCancel:(UIAlertView *)alertView {}// 动态设置按钮是否激活,输入框中的内容发生改变或警告框被创建时被调用- (BOOL)alertViewShouldEnableFirstOtherButton:(UIAlertView *)alertView {    UITextField *user = [alertView textFieldAtIndex:0];    // 返回 YES 时 otherButton 的第一个按钮激活,NO 时禁用。不设置时默认返回 YES    if (user.text.length == 0) {        return NO;    }    return YES;}

转载于:https://www.cnblogs.com/CH520/p/9406461.html

你可能感兴趣的文章
SKY IM-A800S 驱动下载
查看>>
应用程序 数据缓存
查看>>
TFS签入签出
查看>>
第二条:遇到多个构造器参数(Constructor Parameters)时要考虑用构建器(Builder)
查看>>
成长,没你想象的那么迫切
查看>>
ASP.NET Core 中文文档 第一章 入门
查看>>
jQuery入门(2)使用jQuery操作元素的属性与样式
查看>>
贴片电阻分类、阻值、功率、封装、尺寸
查看>>
Mqtt协议IOS端移植2
查看>>
【Eclipse】eclipse中设置tomcat启动时候的JVM参数
查看>>
10.查看npm安装信息和版本号
查看>>
国际化环境下系统架构演化
查看>>
C#跟着阿笨玩一起玩异步Task实战(一)
查看>>
Sqoop-1.4.6安装部署及详细使用介绍
查看>>
oracle 存储过程 示例
查看>>
正态分布与中心极限定理
查看>>
cf1027F. Session in BSU(并查集 匈牙利)
查看>>
Chrome 主页被篡改
查看>>
openlayers入门开发系列之批量叠加zip压缩SHP图层篇
查看>>
gcc中的-Wl,rpath=<your_lib_dir>选项
查看>>