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

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

首先,视图控制器必须得实现协议UIAlertViewDelegate中的方法,并指定delegate为self,才能使弹出的Alert窗口响应点击事件。

具体代码如下:

 

ViewController.h中的代码如下:

 

[cpp] 
 
  1. #import <UIKit/UIKit.h>  
  2.   
  3. @interface ViewController : UIViewController<UIAlertViewDelegate>  
  4.   
  5. @end  

 

 

ViewController.m中的详细代码:

 

[java] 
 
    1. - (void)viewDidLoad  
    2. {  
    3.     [super viewDidLoad];  
    4.     // Do any additional setup after loading the view from its nib  
    5.       
    6.     //初始化AlertView  
    7.     UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"AlertViewTest"  
    8.                                                    message:@"message"  
    9.                                                   delegate:self  
    10.                                          cancelButtonTitle:@"Cancel"  
    11.                                          otherButtonTitles:@"OtherBtn",nil];  
    12.     //设置标题与信息,通常在使用frame初始化AlertView时使用  
    13.     alert.title = @"AlertViewTitle";  
    14.     alert.message = @"AlertViewMessage";  
    15.       
    16.     //这个属性继承自UIView,当一个视图中有多个AlertView时,可以用这个属性来区分  
    17.     alert.tag = 0;  
    18.     //只读属性,看AlertView是否可见  
    19.     NSLog(@"%d",alert.visible);  
    20.     //通过给定标题添加按钮  
    21.     [alert addButtonWithTitle:@"addButton"];  
    22.     //按钮总数  
    23.     NSLog(@"number Of Buttons :%d",alert.numberOfButtons);  
    24.     //获取指定索引的按钮标题  
    25.     NSLog(@"buttonTitleAtIndex1:%@",[alert buttonTitleAtIndex:1]);  
    26.     NSLog(@"buttonTitleAtIndex2:%@",[alert buttonTitleAtIndex:2]);  
    27.     //获取取消按钮的索引  
    28.     NSLog(@"cancelButtonIndex:%d",alert.cancelButtonIndex);  
    29.     //获取第一个其他按钮的索引  
    30.     NSLog(@"firstOtherButtonIndex:%d",alert.firstOtherButtonIndex);  
    31.     //显示AlertView  
    32.     [alert show];  
    33.     [alert release];  
    34. }  
    35.   
    36. #pragma marks -- UIAlertViewDelegate --  
    37. //根据被点击按钮的索引处理点击事件  
    38. -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex  
    39. {  
    40.     NSLog(@"clickButtonAtIndex:%d",buttonIndex);  
    41. }  
    42.   
    43. //AlertView已经消失时执行的事件  
    44. -(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex  
    45. {  
    46.     NSLog(@"didDismissWithButtonIndex");  
    47. }  
    48.   
    49. //ALertView即将消失时的事件  
    50. -(void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex  
    51. {  
    52.     NSLog(@"willDismissWithButtonIndex");  
    53. }  
    54.   
    55. //AlertView的取消按钮的事件  
    56. -(void)alertViewCancel:(UIAlertView *)alertView  
    57. {  
    58.     NSLog(@"alertViewCancel");  
    59. }  
    60.   
    61. //AlertView已经显示时的事件  
    62. -(void)didPresentAlertView:(UIAlertView *)alertView  
    63. {  
    64.     NSLog(@"didPresentAlertView");  
    65. }  
    66.   
    67. //AlertView即将显示时  
    68. -(void)willPresentAlertView:(UIAlertView *)alertView  
    69. {  
    70.     NSLog(@"willPresentAlertView");  
    71. }  
    72.   
    73. - (void)viewDidUnload  
    74. {  
    75.     [super viewDidUnload];  
    76.     // Release any retained subviews of the main view.  
    77.     // e.g. self.myOutlet = nil;  
    78. }  

转载于:https://www.cnblogs.com/cynthia116/p/5038409.html

你可能感兴趣的文章
shell习题第16题:查用户
查看>>
python脚本检查TCP端口是否正常
查看>>
梯度下降法与方向导数
查看>>
实验4 [bx]和loop的使用
查看>>
Redis常用命令
查看>>
Handler消息传递机制
查看>>
linux 查看系统信息
查看>>
2018.08.22 NOIP模拟 shop(lower_bound+前缀和预处理)
查看>>
2018.11.06 bzoj1040: [ZJOI2008]骑士(树形dp)
查看>>
2019.02.15 bzoj5210: 最大连通子块和(链分治+ddp)
查看>>
redis cluster 集群资料
查看>>
Junit使用教程(一)
查看>>
Python接口测试-使用requests模块发送post请求
查看>>
混合模式程序集是针对“v2.0.50727”版的运行时生成的,在没有配置其他信息的情况下,无法在 4.0 运行时中加载该程序集。...
查看>>
jQuery总结或者锋利的jQuery笔记二
查看>>
前后端协作--服务器渲染与前后端分离
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
GDB调试
查看>>
centos系统python2.7更新到3.5
查看>>