IOS之UIAlertView的事件处理(免Delegate)

本文介绍了一种使用 Blocks 的方式来处理 UIAlertView 的按钮点击事件,这种方法避免了 Delegate 的使用,使得代码更加简洁清晰。通过具体实例展示了如何使用第三方库 UIAlertView+Blocks 来创建带有自定义按钮操作的警告框。
摘要由CSDN通过智能技术生成

        利用这种方式可以避免继承Delegate,不然有很多UIAlertview的时候,处理起来就麻烦了。有效地达到了代码分层的好处。

1.添加头文件,文件请见附件。具体用法可以参照:https://github.com/jivadevoe/UIAlertView-Blocks

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

 2.实现代码,下面的方法是一个UIButton触发的点击事件的自定义方法

//弹出警告框,并实现警告框按钮的触发事件
- (IBAction)showAlert:(UIButton *)sender forEvent:(UIEvent *)event {
    
    RIButtonItem *cancelItem = [RIButtonItem item];
    cancelItem.label = @"No";
    cancelItem.action = ^
    {
        //为NO时的处理
        NSLog(@"为NO时的处理");
    };
    
    RIButtonItem *confirmItem = [RIButtonItem item];
    confirmItem.label = @"Yes";
    confirmItem.action = ^
    {
        //为YES时的处理
        NSLog(@"为YES时的处理");
    };
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Delete This Item?"
                                                                                message:@"Are you sure you want to delete this really important thing?"
                                                                       cancelButtonItem:cancelItem
                                                                       otherButtonItems:confirmItem, nil];
    [alert show];

}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值