使用runtime 封装UIAlertView和UIAlertC

2018-03-26  本文已影响82人  Pierce_蛋

对于最低版本还在iOS7的应用,每次使用UIAlertView进行弹窗,都会觉得麻烦到死。尤其是当有一个页面涉及到多个弹窗的情况,在delegate的方法中判断每个弹窗的tag,然后在不同的if分支中处理每个弹窗的逻辑。简直不能太丑有木有!由于这些丑陋的代码,有几百次我都想消灭iOS7。但是无奈,现在还不是时候。怎么办呢?

偶然之间,让我学习到了一点黑科技。然后就撸起袖子,把UIAlertView和UIAlertController封装到一个工具类中,使每次使用都简洁了那么一丢丢。(至少是在使用的时候消灭了讨人厌的delegate了)。以下就是一些封装过程是实现。

在这个封装的过程,主要解决一个问题:
所有的封装方法,按键的点击事件都是以Block的方式处理的,这样提高了代码的紧凑性。问题就来了,iOS7中UIAlertView需要使用delegate的方式,如何转成Block的方式。

为了解决这个问题,之前的做法是,创建一个单例。保留一个block属性。并且在delegate回调中执行这个block属性。可能这样描述看官不知道我在说什么,哈哈哈。无妨,就是下面一段代码的意思。


typedef void(^LPHAlertViewBlock)(NSInteger buttonIndex);

@interface LPHAlertViewHelper () <UIAlertViewDelegate>

@property (nonatomic, copy) LPHAlertViewBlock alertViewBlock;

@end

@implementation LPHAlertViewHelper

- (void)showAlertForIos7withTitle:(NSString *)title
                          message:(NSString *)message
                    buttonActions:(NSArray<LPHAlertAction *> *)actionList {
    
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
                                                    message:message
                                                   delegate:self
                                          cancelButtonTitle:actionList.firstObject.title
                                          otherButtonTitles:nil];
    
    for (NSInteger i = 1; i < actionList.count; i++) {
        
        [alert addButtonWithTitle:actionList[i].title];
    }
    
     //给当前的Block赋值
     self. alertViewBlock = ^(NSInteger buttonIndex) {
        
        if (actionList[buttonIndex].actionHandler) {
            actionList[buttonIndex].actionHandler();
        }
    };
    
    [alert show];
}

- (void)alertView:(UIAlertView *)alertView
didDismissWithButtonIndex:(NSInteger)buttonIndex {
    
    //执行回调,将点击的buttonIndex传回去
    if (self. alertViewBlock) {
        self. alertViewBlock (buttonIndex);
    }
}

@end

不过这样有问题,如果是多个弹窗的话呢?前一个弹窗的alertViewBlock值会被后一个弹窗的值覆盖,这样就导致,在多个弹窗的情况下,弹窗按键的响应事件会出错。

然后昨天无意中学了点Runtime的皮毛,看到可以通过objc_setAssociatedObject方法给一个对象添加一个属性,通过objc_getAssociatedObject读取添加的这个。看到这个,我瞬间打开了新世界的大门,这就是,我要的滑板鞋?(此处可以冷场,哈哈哈)

不知道你是不是跟我一样想到了它的用法?
可以给每个UIAlertView的对象添加一个block属性,然后在delegate中取出来,直接调用block方法?好吧,语言总是枯燥的(请不要拆穿是我语言水平有限),看看下面给出的代码实现。


#import <objc/runtime.h>

//only For iOS7
static NSString * const LPHAlertActionKey = @"LPHAlertActionKey";
typedef void(^LPHAlertViewBlock)(NSInteger buttonIndex);

@interface LPHAlertViewHelper () <UIAlertViewDelegate>

@end

@implementation LPHAlertViewHelper
#pragma mark - Private iOS7 Methods

+ (instancetype)sharedInstance {
    
    static id shared = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        shared = [[super alloc] init];
    });
    
    return shared;
}

+ (void)showAlertForIos7withTitle:(NSString *)title
                          message:(NSString *)message
                    buttonActions:(NSArray<LPHAlertAction *> *)actionList {
    
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
                                                    message:message
                                                   delegate:[LPHAlertViewHelper sharedInstance]
                                          cancelButtonTitle:actionList.firstObject.title
                                          otherButtonTitles:nil];
    
    for (NSInteger i = 1; i < actionList.count; i++) {
        [alert addButtonWithTitle:actionList[i].title];
    }
    
    //创建一个block
    LPHAlertViewBlock actionBlock = ^(NSInteger buttonIndex) {
        
        if (actionList[buttonIndex].actionHandler) {
            actionList[buttonIndex].actionHandler();
        }
    };
    
    //将block设置为alert 的属性
    objc_setAssociatedObject(alert,
                             LPHAlertActionKey,
                             actionBlock,
                             OBJC_ASSOCIATION_COPY);
    
    [alert show];
}

- (void)alertView:(UIAlertView *)alertView
didDismissWithButtonIndex:(NSInteger)buttonIndex {
    
    //取出alert的block属性
    LPHAlertViewBlock actionBlock = objc_getAssociatedObject(alertView,
                                                             LPHAlertActionKey);
    //执行block
    if (actionBlock) {
        actionBlock (buttonIndex);
    }
}

@end

嗯嗯,大概就是这样的效果,完美解决了我想把UIAlertView的delegate需求。


其次,在封装过程,通过UIAlertView的初始化方法:

- (instancetype)initWithTitle:(nullable NSString *)title
                      message:(nullable NSString *)message
                     delegate:(nullable id /*<UIAlertViewDelegate>*/)delegate
            cancelButtonTitle:(nullable NSString *)cancelButtonTitle
            otherButtonTitles:(nullable NSString *)otherButtonTitles, ... NS_REQUIRES_NIL_TERMINATIO;

我还尝试了可变参数(NS_REQUIRES_NIL_TERMINATION)的使用(我也不知道是不是叫可变参数,下面都这么叫),自己也定义了一个带有可变参数的方法,为了提供弹窗带有多个按钮的情况:

//.h中的定义
+ (void)showAlertAtRootVC:(UIViewController *_Nullable)rootVC
                    title:(NSString *_Nullable)title
                  message:(NSString *_Nullable)message
            buttonActions:(LPHAlertAction *_Nullable)firstActions, ... NS_REQUIRES_NIL_TERMINATION;

下面是对于可变参数的解析的关键步骤:


+ (void)showAlertAtRootVC:(UIViewController *_Nullable)rootVC
                    title:(NSString *_Nullable)title
                  message:(NSString *_Nullable)message
            buttonActions:(LPHAlertAction *_Nullable)firstActions, ... NS_REQUIRES_NIL_TERMINATION {
    
    //将可变参数的内容解析成数组
    NSMutableArray <LPHAlertAction *> *actionList = [NSMutableArray array];
   
    // 定义一个指向可选参数列表的指针
    va_list actions;  
    // 获取第一个可选参数的地址,此时参数列表指针指向函数参数列表中的第一个可选参数
    va_start(actions, firstActions);
    if (firstActions) {
        [actionList addObject:firstActions];
        // 遍历参数列表中的参数,并使参数列表指针指向参数列表中的下一个参数
        LPHAlertAction *nextAction;
        while ((nextAction = va_arg(actions, LPHAlertAction *))) {
            [actionList addObject:nextAction];
        }
    }
    // 结束可变参数的获取(清空参数列表)
    va_end(actions);
}

好啦,大概是这样啦。附上Demo地址:https://github.com/lipeihan/LPHAlertDemo

上一篇下一篇

猜你喜欢

热点阅读