设为首页 加入收藏

TOP

iOS UIAlertview的事件处理
2014-11-24 12:11:46 来源: 作者: 【 】 浏览:0
Tags:iOS UIAlertview 事件 处理

1.开始想用UIView做密码输入


2.后来觉得麻烦,改用UIAlertview


3.因为我做的是SBSETTINGS开发,不能提供UIAlertView 事件处理所需要的self.说到这个UIAlertView不得不吐槽一下,APPLE绝对是极限方便使用者,非常虐待开发者的.


为了保证流畅,连UIAlertView的YES NO事件都TNND要delegate


UIAlertView和UIActionSheet都采用了Delegate模式,在同一个视图控制器中使用多个UIAlertView或UIActionSheet时控制器需要同时充当它们的delegate,这种情况下处理函数中通常需要通过tag进行区分后处理。这样就经常会造成如下代码:


- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
if ([alertView tag] == LOGIN_ERROR_ALERT) { // it's alert for login error
if (buttonIndex == 0) { // and they clicked OK.
// do stuff
}
}
else if ([alertView tag] == UPDATE_ERROR_ALERT) { // it's alert for update error
if (buttonIndex == 0) { // and they clicked OK.
// do stuff
}
}
else {
}
}


4.这回郁闷了,无法直接用上面的方式处理按钮事件.想想我肯定不是第一个倒霉孩子,果然给我找到一种UIAlsertview block方式
简单来说,这其实就是把按钮事件封装成一个方法块(这说法不严谨),然后把这个块做为参数传递给UIAlertView.实际上还是回调,不过要容易理解也容易处理些.


代理在 https://github.com/jivadevoe/UIAlertView-Blocks


先写好方法块


RIButtonItem *cancelItem = [RIButtonItem item];
cancelItem.label = @"No";
cancelItem.action = ^
{
//为NO时的处理
};


RIButtonItem *deleteItem = [RIButtonItem item];
deleteItem.label = @"Yes";
deleteItem.action = ^
{
//为YES时的处理
[context deleteObject:theObject];
};
//调用



UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Delete This Item "
message:@"Are you sure you want to delete this really important thing "
cancelButtonItem:cancelItem
otherButtonItems:deleteItem, nil];
[alertView show];



别忘记


#include "RIButtonItem.h"
#include "UIAlertView+Blocks.h"


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Android OpenGL ES->Cube Map 下一篇shell脚本批量追踪ip路由走向

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·Redis 分布式锁全解 (2025-12-25 17:19:51)
·SpringBoot 整合 Red (2025-12-25 17:19:48)
·MongoDB 索引 - 菜鸟 (2025-12-25 17:19:45)
·What Is Linux (2025-12-25 16:57:17)
·Linux小白必备:超全 (2025-12-25 16:57:14)