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"

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值