iOS 远程推送封装-优化 remote notification

notification push

本文抛砖引玉,欢迎各位大佬指点!

  1. 大家在做项目的时候有没有优化过appDelegate,appDelegate主要是实现application的代理方法,SDK的初始化等,这样就会导致delegate代码量多,找函数 调试繁琐等问题。
  2. 当然SDK的初始化可以放到一个自定义的类,这个类专门做初始化使用。
  3. 那application的大量代理方法怎么办呢,接下来先来说说有关推送的一些优化。
先说下远程推送的大概流程
1、本地注册推送
2、appDelegate reveiveDeviceToken代理方法拿到token,交给自己的推送服务器或者三方推送的服务器
3、实现那几个通知到达、点击推送通知的代理方法(冷启动处理)
4、实现跳转+推送到达率的统计

以上就是远程推送的大概流程,比较简单,
接下来说下推送封装的思路,就两点,核心就是第二点,方法交换

  • 注册代码封装到自定义类内部
  • 实现自定义类的代理方法,其实是自定义类内部把有关系统推送的代理方法实现替换成自定义方法的实现

先来看下核心类有哪些东西:

@interface TTPushManager : NSObject

@property (nonatomic, weak) id <TTPushManagerDelegate> delegate;

/**
 * model name
 */
@property (nonatomic, assign, readonly) Class modelClass;

/**
 * 解析 key 默认为 @"extra"
 */
@property (nonatomic, copy, readonly) NSString *analysisKey;

/**
 * 根据 modelClass 解析后的model
 */
@property (nonatomic, strong, readonly) id analysisModel;

/**
 * deviceToken
 */
@property (nonatomic, copy, readonly) NSString *deviceToken;

/**
 * 根据pushMsgIdKey 解析出来的 value
 */
@property (nonatomic, copy, readonly) NSString *pushMsgId;

/**
 * 解析推送到达使用的key
 */
@property (nonatomic, copy, readonly) NSString *pushMsgIdKey;

+ (instancetype)shareInstance;

/**
 注册
 @param delagate 代理 不可为空
 */
- (void)registerRemoteNotification:(nonnull id<UIApplicationDelegate,UNUserNotificationCenterDelegate>)delagate;

/**
 @param modelClass 想要解析成哪种模型,modelClass
 @param analysisKey 解析model key
 @param pushIdKey 解析推送到达使用的key
 */
- (void)registerModelName:(nullable Class)modelClass analysisKey:(nullable NSString *)analysisKey pushMsgIdKey:(nullable NSString *)pushIdKey;

/**
 推送统计 iOS10以上版本 可在 push service extension h中使用
 @param msgID msgID
 @param token token
 */
+ (void)uploadPushMsgId:(NSString *)msgID token:(NSString *)token;

@end

注释写的很清楚了,主要是给外部暴露了注册远程通知接口,代理,还有payload内部自定义数据的解析key.

再来看看.m文件:

1、初始化 给默认值
+ (instancetype)shareInstance {
    static TTPushManager *instance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[[self class] alloc] init];
        instance.analysisKey = @"extra";//解析自己业务数据用到的key
        instance.pushMsgIdKey = @"msgId";//解析推送到达率使用的key
    });
    return instance;
}

2、传递要被解析的model 解析key,推送到达率解析key
- (void)registerModelName:(nullable Class)modelClass analysisKey:(nullable NSString *)analysisKey pushMsgIdKey:(nullable NSString *)pushIdKey {
    if(analysisKey.length > 0) {
        [TTPushManager shareInstance].analysisKey = analysisKey;
    }
    if (modelClass) {
        [TTPushManager shareInstance].modelClass = modelClass;
    }
    if (pushIdKey.length > 0) {
        [TTPushManager shareInstance].pushMsgIdKey = pushIdKey;
    }
}
3、注册远程通知
- (void)registerRemoteNotification:(id<UIApplicationDelegate,UNUserNotificationCenterDelegate>)delagate  API_AVAILABLE(ios(10.0)) {
    
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        [self exchangeMethod:delagate];
    });
    
    UIApplication *application = [UIApplication sharedApplication];
    CGFloat sysVersion = [[UIDevice currentDevice].systemVersion floatValue];
    if (sysVersion >= 10.0) {
        //iOS10特有
        if (@available(iOS 10.0, *)) {
            UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
            center.delegate = delagate;
            [center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert | UNAuthorizationOptionBadge | UNAuthorizationOptionSound) completionHandler:^(BOOL granted, NSError * _Nullable error) {
                if (granted) {
                    NSLog(@"remote notification 注册成功");
                    [center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {
                        NSLog(@"%@", settings);
                    }];
                } else {
                    NSLog(@"注册失败");
                }
            }];
        }
    } else if (sysVersion > 8.0){
        //iOS8 - iOS10
        [application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge categories:nil]];
    } else {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
        //iOS8系统以下
        [application registerForRemoteNotificationTypes:UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound];
#pragma clang diagnostic pop
    }
    [[UIApplication sharedApplication] registerForRemoteNotifications];
}
4、替换系统代理方法实现
- (void)exchangeMethod:(id)delegate {
    Class appDelegate = [delegate class];
    tt_swizzleMethodImplementation(appDelegate, [self class], @selector(application:didRegisterForRemoteNotificationsWithDeviceToken:), @selector(tt_application:didRegisterForRemoteNotificationsWithDeviceToken:));
    
    tt_swizzleMethodImplementation(appDelegate, [self class], @selector(application:didFailToRegisterForRemoteNotificationsWithError:), @selector(tt_application:didFailToRegisterForRemoteNotificationsWithError:));

    tt_swizzleMethodImplementation(appDelegate,[self class], @selector(application:didRegisterUserNotificationSettings:), @selector(tt_application:didRegisterUserNotificationSettings:));
    
//    tt_swizzleMethodImplementation(appDelegate, [self class], @selector(application:didReceiveRemoteNotification:), @selector(tt_application:didReceiveRemoteNotification:));
    
    tt_swizzleMethodImplementation(appDelegate,[self class], @selector(application:didReceiveRemoteNotification:fetchCompletionHandler:), @selector(tt_application:didReceiveRemoteNotification:fetchCompletionHandler:));
    
    if (@available(iOS 10.0, *)) {
        tt_swizzleMethodImplementation(appDelegate,[self class], @selector(userNotificationCenter:willPresentNotification:withCompletionHandler:), @selector(tt_userNotificationCenter:willPresentNotification:withCompletionHandler:));

        tt_swizzleMethodImplementation(appDelegate,[self class], @selector(userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:), @selector(tt_userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:));
    }
}
5、runtime 替换imp (核心)
void tt_swizzleMethodImplementation(Class originC,Class cusC ,SEL originSEL, SEL cusSEL) {
    Method originMethod = class_getInstanceMethod(originC, originSEL);
    Method cusMethod = class_getInstanceMethod(cusC, cusSEL);
    if (!originMethod) {//如果originMethod没有,给originC添加自定义方法
        BOOL added = class_addMethod(originC, cusSEL, method_getImplementation(cusMethod), method_getTypeEncoding(cusMethod));
        if (added) {//如果添加成功,则替换系统的imp
            class_replaceMethod(originC, originSEL, method_getImplementation(cusMethod), method_getTypeEncoding(cusMethod));
        }
    } else {
        method_exchangeImplementations(originMethod, cusMethod);
    }
}
6、如果需要统计推送到达率,iOS10以上系统版本可以在 push service extension 内部调用留出的接口,但是需要配置以下两点:
1、extension target -> Build settings -> other linker flags -> 添加 -all_load 
2、project -> Info -> configurations -> 添加extension 的 Pods
7、最后在appDelegate中调用
    [[TTPushManager shareInstance] registerRemoteNotification:self];
    [TTPushManager shareInstance].delegate = self;
    [[TTPushManager shareInstance] registerModelName:[xxx class] analysisKey:nil pushMsgIdKey:nil];

以上就是推送部分的简单封装,当然了,也可以把分享、支付封装下,制作成自己的私有库,这样就不用在appDelegate内码一大堆代码了,而且为以后的组件化做准备。

项目中是以私有库的形式使用的,所以没有制作成共有库上传到GitHub。

最后附上demo地址,喜欢就star下吧,如有问题,欢迎交流,谢谢。

点赞是您的态度!

demo地址

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

推荐阅读更多精彩内容