UIAlertView、UIActionSheet、UIAlertController、KVO 使用Block简单封装。

简单的封装UIAlertView、UIActionSheet、UIAlertController、KVO。封装之后不使用代理,使用block直接调用响应事件。

直接提供Demo地址:SimpleBlock

1、UIAlertView 封装

1、 静态方法Block实现。
typedef void (^ClickAtIndexBlock)(NSInteger buttonIndex);

@interface KAlertView : NSObject <UIAlertViewDelegate>

+ (UIAlertView *)initWithTitle:(NSString *)title
                        message:(NSString *)messge
              cancleButtonTitle:(NSString *)cancleButtonTitle
              OtherButtonsArray:(NSArray *)otherButtons
                  clickAtIndex:(ClickAtIndexBlock)clickAtIndex;

@end

初始化方法,加一个Block。

static ClickAtIndexBlock _ClickAtIndexBlock;

@implementation KAlertView

+ (UIAlertView *)initWithTitle:(NSString *)title
                       message:(NSString *)messge
             cancleButtonTitle:(NSString *)cancleButtonTitle
             OtherButtonsArray:(NSArray *)otherButtons
                  clickAtIndex:(ClickAtIndexBlock)clickAtIndex {
    _ClickAtIndexBlock = [clickAtIndex copy];
    
    UIAlertView  *alertView = [[UIAlertView alloc] initWithTitle:title
                                                         message:messge
                                                        delegate:self
                                               cancelButtonTitle:cancleButtonTitle
                                               otherButtonTitles: nil];
    for (NSString *otherTitle in otherButtons) {
        [alertView addButtonWithTitle:otherTitle];
    }
    [alertView show];
    return alertView;
}

#pragma mark   UIAlertViewDelegate

+ (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    _ClickAtIndexBlock(buttonIndex);
}

+ (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    _ClickAtIndexBlock = nil;
}

@end

注解:
我们这里的UIAlertView代理不是给的类对象,而是给的类本身,而类本身也是对象,是元类的对象,所以代理方法也要改成类本身的代理方法,方能执行。
UIAlertView的封装就完成了,调用的时候我们就可以相对简单一点了。

 [KAlertView initWithTitle:@"title" message:@"message" cancleButtonTitle:@"cancle" OtherButtonsArray:@[@"sure",@"very"] clickAtIndex:^(NSInteger buttonIndex) {
        NSLog(@"--index : %ld",buttonIndex);
    }];
1、 Runtime Block实现。
@interface KRAlertView : NSObject <UIAlertViewDelegate>

typedef void (^ClickAtIndexBlock)(NSInteger buttonIndex);

+ (UIAlertView *)initWithTitle:(NSString*)title
                       message:(NSString *)messge
             cancleButtonTitle:(NSString *)cancleButtonTitle
             OtherButtonsArray:(NSArray*)otherButtons
                  clickAtIndex:(ClickAtIndexBlock) clickAtIndex;

@end

和第一个实现方法一样,加一个block 一个初始化

#import <objc/runtime.h>

const char *KUIAlertView_runtime_key = "KUIAlertView_runtime_key";

@interface UIAlertView (KRAlertView)

- (void)setClickBlock:(ClickAtIndexBlock)block;

- (ClickAtIndexBlock)clickBlock;

@end

@implementation UIAlertView(KRAlertView)

- (void)setClickBlock:(ClickAtIndexBlock)block {
    objc_setAssociatedObject(self, KUIAlertView_runtime_key, block, OBJC_ASSOCIATION_COPY);
}

- (ClickAtIndexBlock)clickBlock {
    return objc_getAssociatedObject(self, KUIAlertView_runtime_key);
}

@end

@implementation KRAlertView 

+ (UIAlertView *)initWithTitle:(NSString*)title
                       message:(NSString *)messge
             cancleButtonTitle:(NSString *)cancleButtonTitle
             OtherButtonsArray:(NSArray*)otherButtons
                  clickAtIndex:(ClickAtIndexBlock) clickAtIndex {
    
    UIAlertView  *alerView = [[UIAlertView alloc] initWithTitle:title message:messge delegate:self cancelButtonTitle:cancleButtonTitle otherButtonTitles: nil];
    alerView.clickBlock = clickAtIndex;
    for (NSString *otherTitle in otherButtons) {
        [alerView addButtonWithTitle:otherTitle];
    }
    [alerView show];
    return alerView;
}

#pragma mark   UIAlertViewDelegate

+ (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    if (alertView.clickBlock) {
        alertView.clickBlock(buttonIndex);
    }
}

实际上runtime实现的主要思想就是给UIAlertView的类别加一个block属性。然后就可以直接使用这个属性,从而调用block。
这里面的主要思想是runtime的关联属性

    objc_setAssociatedObject(self, KUIAlertView_runtime_key, block, OBJC_ASSOCIATION_COPY);
  将某个值跟某个对象关联起来,将某个值存储到某个对象中
    // 第一个参数:给哪个对象添加属性
    // 第二个参数:属性名称
    // 第三个参数:属性值
    // 第四个参数:保存策略
  objc_getAssociatedObject(self, KUIAlertView_runtime_key);
  获取相应对象的关联值。

调用和第一种方法相同。

2、UIActionSheet 封装

UIActionSheet 实现方法和UIAlertView相同,但是这里提供一个不需要静态方法,使用runtime的实现方式。首先创建一个类别,具体代码如下。

typedef void (^ClickAtIndexBlock)(NSInteger buttonIndex);

@interface UIActionSheet (block)

- (void)showActionSheetInView:(UIView *)showView clickCompleteBlock:(ClickAtIndexBlock)block;

@end
#import <objc/runtime.h>

static void *key = "KActionSheet_runtime_key";

@implementation UIActionSheet (block)

- (void)showActionSheetInView:(UIView *)showView clickCompleteBlock:(ClickAtIndexBlock)block {
    if (block) {
        objc_removeAssociatedObjects(self);
        objc_setAssociatedObject(self, key, block, OBJC_ASSOCIATION_COPY);
        self.delegate = (id<UIActionSheetDelegate>)self;
    }
    [self showInView:showView];
}

#pragma mark UIActionSheetDelegate

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    ClickAtIndexBlock block = objc_getAssociatedObject(self, key);
    if (block) {
        block(buttonIndex);
    }
}

@end

原理类似,只是这种方法调用相对其他两种方法多一句话如下

 UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"title" delegate:nil cancelButtonTitle:@"cancel" destructiveButtonTitle:nil otherButtonTitles:@"1",@"2", nil];
 [actionSheet showActionSheetInView:self.view clickCompleteBlock:^(NSInteger buttonIndex) {
        NSLog(@"--- %ld",buttonIndex);
    }];

3、UIAlertController 封装

ios8之后不是推荐使用这个控件吗,当然这个功能相对比UIAlertView和UIActionSheet要强大,所以我也就稍微封装一下。这个封装就没有runtime,也没有使用类对象了,直接上代码。

#import <UIKit/UIKit.h>

typedef void (^ClickAlertBlock)(NSString *title);

@interface KAlertController : NSObject

+ (UIAlertController *)showAlertWith:(UIViewController *)showController
                               title:(NSString *)title
                             message:(NSString *)message
                         cancleTitle:(NSString *)cancleTitle
                         actionTitle:(NSArray *)titleArrary
                           alertType:(UIAlertControllerStyle)alerType
                  andClickAlertBlock:(ClickAlertBlock)block;


@end
@implementation KAlertController

+ (UIAlertController *)showAlertWith:(UIViewController *)showController
                               title:(NSString *)title
                             message:(NSString *)message
                         cancleTitle:(NSString *)cancleTitle
                         actionTitle:(NSArray *)titleArrary
                           alertType:(UIAlertControllerStyle)alerType
                  andClickAlertBlock:(ClickAlertBlock)block {
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:alerType];
    for (NSString *actionTitle in titleArrary) {
        UIAlertAction *action = [UIAlertAction actionWithTitle:actionTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            if (block) {
                block(actionTitle);
            }
        }];
        [alertController addAction:action];
    }
    UIAlertAction *action = [UIAlertAction actionWithTitle:cancleTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        if (block) {
            block(cancleTitle);
        }
    }];
    [alertController addAction:action];
    [showController presentViewController:alertController animated:YES completion:nil];
    return alertController;
}

@end

调用也是一句话,根据枚举调用出来你想要的,这里只举例UIAlertVIew

   [KAlertController showAlertWith:self
                              title:@"title"
                            message:@"message"
                        cancleTitle:@"cancle"
                        actionTitle:@[@"1",@"2"]
                          alertType:UIAlertControllerStyleAlert
                 andClickAlertBlock:^(NSString *title) {
        NSLog(@"title   :%@",title);
    }];

4、KVO Block调用

原理和以上类似,只需要加一个NSObject类别

typedef void (^CompleteChangeBlock)(id _Nonnull obj, id _Nonnull oldVal, id _Nonnull newVal);

@interface NSObject (KVO)

- (void)addObserver:(NSObject *_Nullable)observer
         forKeyPath:(NSString *_Nullable)keyPath
completeChangeBlock:(CompleteChangeBlock _Nullable )block;

@end

static CompleteChangeBlock _CompleteChangeBlock;

@implementation NSObject (KVO)

- (void)addObserver:(NSObject *_Nullable)observer
         forKeyPath:(NSString *_Nullable)keyPath
completeChangeBlock:(CompleteChangeBlock _Nullable )block {
    
    _CompleteChangeBlock = block;
    [self addObserver:observer forKeyPath:keyPath options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil];
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)contextt {
    if (_CompleteChangeBlock) {
        _CompleteChangeBlock(object,change[@"old"],change[@"new"]);
    }
}

@end

调用:

 [self addObserver:self forKeyPath:@"number" completeChangeBlock:^(id  _Nonnull obj, id  _Nonnull oldVal, id  _Nonnull newVal) {
        NSLog(@"obj :%@   old:  %@    new: %@",obj,oldVal,newVal);
 }];
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,019评论 4 62
  • 用到的组件 1、通过CocoaPods安装 2、第三方类库安装 3、第三方服务 友盟社会化分享组件 友盟用户反馈 ...
    SunnyLeong阅读 14,601评论 1 180
  • 狹擠的書案 躺著 一顆百香果 一顆蘋果 時不時傳來 輪胎與潮濕路面 相觸的聲音 傘願不願意 全化為黑色 百香果已乾...
    我是思无垠阅读 197评论 0 1
  • 这几天看了王阳明心学,感触很多。 王阳明是“立言、立德、立功”的三不朽圣人。他精通儒、道、佛,是陆王心学的集大成者...
    盖子同学阅读 1,482评论 4 5
  • 根据公司不同的发展阶段实施管理,既要有严苛的制度原则管理,又有温暖体恤下属的人性化管理,这样才能成为优秀的管理者。
    伊森田慧慧阅读 121评论 0 0