码迷,mamicode.com
首页 > 移动开发 > 详细

ios7_如何实现UIAlertView以及监听点击事件

时间:2014-08-24 11:35:02      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   文件   div   log   

1、在viewController的.m文件,遵守<UIAlertViewDelegate>代理协议

@interface moboViewController () <UIAlertViewDelegate> 

2、在 - (void)viewDidLoad 方法中实现UIAlertView

 1 - (void)viewDidLoad
 2 {
 3     [super viewDidLoad];
 4     
 5   // 1、初始化 alertView
 6   UIAlertView *altView = [[UIAlertView alloc]initWithTitle:[self altTitle] message:[self altMSG] delegate:self cancelButtonTitle:[self cancelBtnTitle] otherButtonTitles:[self otherBtnTitle], nil];
 7     // 2、显示 alertView
 8     [altView show];
 9     
10 }

 

3、继续实现其它方法,返回各种标题以及监听按钮点击事件的代理方法

 1 //返回 标题
 2 - (NSString *)altTitle{
 3     return @"下线通知";
 4 }
 5 
 6 //返回 消息体
 7 - (NSString *)altMSG{
 8     return @"你的帐号在异地登录,密码可能泄露,建议前往http://mobodemy.com进行修改。";
 9 }
10 
11 //返回 退出按钮 标题
12 - (NSString *) cancelBtnTitle {
13     return @"退出";
14 }
15 
16 //返回 重新登录 按钮标题
17 - (NSString *) otherBtnTitle {
18     return @"重新登录";
19 }
20 
21 //监听点击时间 代理方法
22 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
23 {
24     NSString *btnTitle = [alertView buttonTitleAtIndex:buttonIndex];
25     if ([btnTitle isEqualToString:[self cancelBtnTitle]]) {
26         NSLog(@"你点击了退出");
27     }
28     else if ([btnTitle isEqualToString:[self otherBtnTitle]] ) {
29         NSLog(@"你点击了重新登录按钮");
30     }
31 }

 

ios7_如何实现UIAlertView以及监听点击事件

标签:style   blog   http   color   os   io   文件   div   log   

原文地址:http://www.cnblogs.com/LeoYoung/p/LeoYoung_QQ_907596253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!