前言

	NS_CLASS_DEPRECATED_IOS(2_0, 9_0, "UIAlertView is deprecated. Use UIAlertController with a preferredStyle
of UIAlertControllerStyleAlert instead") __TVOS_PROHIBITED
@interface UIAlertView : UIView @available(iOS, introduced=2.0,deprecated=9.0,message="UIAlertView is deprecated. Use UIAlertController
with a preferredStyle of UIAlertControllerStyleAlert instead")
public class UIAlertView : UIView
  • 警告框的按钮可以设置一个或多个,但是最好不要超过两个,如果设置了两个按钮,一般有一个按钮表示取消。

  • 按钮的 index 按照 cancelButton、otherButton、addButton 的顺序依次类推,起始值为 0。

1、UIAlertView 的创建

  • Objective-C

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

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

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

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

      	// 设置代理时,需遵守协议 UIAlertViewDelegate
      let alertView:UIAlertView = UIAlertView(title: "确认退出 ?",
      message: "真的要退出吗 ?",
      delegate: self,
      cancelButtonTitle: "取消",
      otherButtonTitles: "退出") // 将 alertView 添加到屏幕上
      alertView.show()
    • 先创建,后添加按钮等信息

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

2、UIAlertView 的设置

  • Objective-C

    	// 设置样式
    /*
    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; // 设置代理,需遵守协议 <UIAlertViewDelegate>
    alertView.delegate = self; // 显示 alertView
    [alertView show]; // 隐藏 UIAlertView
    [alertView dismissWithClickedButtonIndex:0 animated:YES];
  • Swift

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

3、UIAlertView 的协议方法

  • 需遵守协议 UIAlertViewDelegate,并设置代理

  • Objective-C

    	// 将要显示,警告框显示前被调用
    - (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;
    }
  • Swift

    	// 将要显示,警告框显示前被调用
    func willPresentAlertView(alertView: UIAlertView) { } // 已经显示,警告框显示后被调用
    func didPresentAlertView(alertView: UIAlertView) { } // 将要结束选择那个按钮,警告框关闭前调用
    func alertView(alertView: UIAlertView, willDismissWithButtonIndex buttonIndex: Int) { } // 已经结束选择那个按钮,警告框关闭后调用,警告框显示中应用程序进入睡眠状态时也会被调用
    func alertView(alertView: UIAlertView, didDismissWithButtonIndex buttonIndex: Int) { } // 点击了那个按钮,触摸警告框中的任意按钮时被调用,比 willDismissWithButtonIndex 方法先被调用
    func alertView(alertView: UIAlertView, clickedButtonAtIndex buttonIndex: Int) { // cancelButton 按钮的 index 始终为 0,其它的按照 otherButton、addButton 的顺序依次类推
    } // 强制关闭,警告框显示中强制关闭时被调用,例如警告框显示时应用程序突然关闭等场所
    func alertViewCancel(alertView: UIAlertView) { } // 动态设置按钮是否激活,输入框中的内容发生改变或警告框被创建时被调用,Swift 中测试无效
    func alertViewShouldEnableFirstOtherButton(alertView: UIAlertView) -> Bool { let user:UITextField = alertView.textFieldAtIndex(0)! // 返回 YES 时 otherButton 的第一个按钮激活,NO 时禁用。不设置时默认返回 YES
    if user.text?.characters.count == 0 {
    return false
    }
    return true
    }

iOS - UIAlertView的更多相关文章

  1. IOS UIAlertView(警告框)方法总结

    转自:my.oschina.net/u/2340880/blog/408873?p=1 IOS中UIAlertView(警告框)常用方法总结 一.初始化方法 - (instancetype)initW ...

  2. iOS UIAlertView添加输入框

    这玩意有时不用就忘,还是记录一下吧 添加: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"新建文件夹" mes ...

  3. iOS UIAlertView 文字对其方式 文字大小 设置方法

    - (void) willPresentAlertView:(UIAlertView *)alertView { for (UIView *subViewin alertView.subviews) ...

  4. iOS UI-AlertView(警示框)和ActionSheet(选择框、操作表单)

    #import "ViewController.h" @interface ViewController ()<UIAlertViewDelegate,UIActionShe ...

  5. UIAlertView的使用方法

    UIAlertView的使用方法 1. 最简单的用法 UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" mes ...

  6. UIAlertView/UIAlertController封装使用

    基于UIAlertView封装的JXTAlertView,这个是将之前写Demo时搞的一套快捷使用alertView的工具抽离整理出来的,并提供了C函数直接调用,像这样: jxt_showAlertT ...

  7. iOS开发之UIAlertView与UIAlertController的详尽用法说明

    本文将从四个方面对IOS开发中UIAlertView与UIAlertController的用法进行讲解: 一.UIAlertView与UIAlertController是什么东东? 二.我们为什么要用 ...

  8. ios/mac/COCOA系列 -- UIALertVIew 学习笔记

    最近在学习ios开发,学习的书籍<ios7 Pragramming cookbook>,做笔记的目的以后方便查看.笔记形式是小例子,将书上的例子书写完整. UIAlertViewClass ...

  9. iOS开发技巧系列---使用链式编程和Block来实现UIAlertView

    UIAlertView是iOS开发过程中最常用的控件之一,是提醒用户做出选择最主要的工具.在iOS8及后来的系统中,苹果更推荐使用UIAlertController来代替UIAlertView.所以本 ...

随机推荐

  1. 【Pro ASP.NET MVC 3 Framework】.学习笔记.3.MVC的主要工具-单元测试

    IProductRepository接口定义了一个仓库,我们通过它获得.更新Product对象.IPriceReducer接口指定了一个功能,它将要对所有的Products实施,通过一个参数,降低他们 ...

  2. Python 编码规范

    官网规范:https://www.python.org/dev/peps/pep-0008/ 1.不在同一句import中引用多个库 # 正确姿势: import os import sys # 错误 ...

  3. Python查看函数代码内容

    方法1:使用help(random) >>> import random >>> help(random) Help on module random: NAME ...

  4. SURF

    推荐:http://www.cnblogs.com/tornadomeet/archive/2012/08/17/2644903.html SURF-Speeded Up Robust Feature ...

  5. android 6.0权限处理

    在模拟器测试好的程序,运行在mate8上面一直崩,经多方查探才找到以下博文,方法还没掌握,但也算是找到原因了: http://***/article/android-6-0-runtime-permi ...

  6. Pearls

    Pearls Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 7980 Accepted: 3966 Description In ...

  7. 【20160924】GOCVHelper MFC增强算法(3)

        //获得当前目录路径     static CString GetLocalPath(){         CString csCfgFilePath;         GetModuleFi ...

  8. python中给for循环增加索引

    for index, item in enumerate(Foo()): print "index: ", index, " item: ",item 用enu ...

  9. masonry插件和infinitescroll插件实现无刷新无分页完美瀑布流

    地址有:http://www.17sucai.com/pins/2657.html 如果你善于发现美,如果你善于观察新鲜的事物,如果你是一名有爱的前端攻城师或设计尸,那么你一定不会对下面图片中的结构感 ...

  10. CentOS 配置solr中文分词器

    第一步:使用IK-Analyzer.把分析器的文件夹上传到服务器. 第二步:需要把分析器的jar包添加到solr工程中. [root@bogon IK Analyzer 2012FF_hf1]# cp ...