AppDelegate 分层,实现解耦和瘦身

一个 iOS 应用可能集成了大量的服务,远程推送、本地推送、生命周期管理、第三方支付、第三方分享....。有没有觉得你的Appdelegate 太过庞大了,有没有想过将每个服务重Appdelegate中拆分出来单独管理。

AppDelegate 做了太多事

AppDelegate 并不遵循单一功能原则,它要负责处理很多事情,如应用生命周期回调、远程推送、本地推送、应用跳转(HandleOpenURL);如果集成了第三方服务,大多数还需要在应用启动时初始化,并且需要处理应用跳转,如果在 AppDelegate 中做这些事情,势必让它变得很庞大。

不同服务的代码纠缠在一起,使得 AppDelegate 变得很难复用。而且如果你想要添加一个服务或者关闭一个服务,都需要去修改 AppDelegate。很多服务看起来互相独立,并不依赖其它服务,我们可以把它们拆分出来,放在单独的文件里。

要实现的目标

1.添加或者删除一个服务的时候,不需要更改 AppDelegate 中的任何一行代码。
2.AppDelegate 不实现 UIApplicationDelegate 协议中的方法,由协议去实现

如何实现

下面就看下怎么实现Appdelegate的分成,下面以极光推送第三方为例

一、首先创建服务类,服务类是对第三方服务的封装。第三方服务包括推送、支付、统计等

JPushService 新创建的服务类需要添加 <UIApplicationDelegate> 协议

//  JPushService.h
//  ALDNews
//
//  Created by Allen on 2018/4/24.
//  Copyright © 2018年 Aladdin. All rights reserved.
//
//JPush 极光推送服务类 服务类

#import <Foundation/Foundation.h>
#import "NSObject+performSelector.h"
@interface JPushService : NSObject <UIApplicationDelegate>

@end
实现文件 (仅说明原理)
//
//  JPushService.m
//  ALDNews
//
//  Created by Allen  on 2018/4/24.
//  Copyright © 2018年 Aladdin. All rights reserved.
//

#import "JPushService.h"

// 引入JPush功能所需头文件
#import "JPush/JPushService.h"
#import "HPNewsDetailsController.h"
// iOS10注册APNs所需头文件
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
#import <UserNotifications/UserNotifications.h>
#endif

#import "UUID.h"

@interface JPushService() <JPUSHRegisterDelegate>

@end

@implementation JPushService
{
    NSInteger _seq;
}
-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    LOG(@"JPushService didFinishLaunchingWithOptions");
    [application setApplicationIconBadgeNumber:0];
    [application cancelAllLocalNotifications];
    //Required
   
    // 初始化
    [JPUSHService setupWithOption:launchOptions appKey:[Config getJPushAppkey]
                          channel:@"App Store"
                 apsForProduction:[Config returnAPIType] == APITypeOnline?YES:NO
            advertisingIdentifier:nil];
    
    return YES;
}



//注册Token
-(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken{
    /// Required - 注册 DeviceToken
    [JPUSHService registerDeviceToken:deviceToken];
    
    
    //设置别名 [UUID getUUID]
    NSString * uuidStr = [[UUID getUUID] stringByReplacingOccurrencesOfString:@"-" withString:@""];
    [JPUSHService setAlias:uuidStr  completion:^(NSInteger iResCode, NSString *iAlias, NSInteger seq) {
        _seq = seq;
    } seq:_seq];
}

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
    
    // Required, iOS 7 Support
    [JPUSHService handleRemoteNotification:userInfo];
    completionHandler(UIBackgroundFetchResultNewData);
}

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
    
    // Required,For systems with less than or equal to iOS6
    [JPUSHService handleRemoteNotification:userInfo];
}

- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
    //Optional
    LOG(@"did Fail To Register For Remote Notifications With Error: %@", error);
}

//进入后台
- (void)applicationDidEnterBackground:(UIApplication *)application {
    
    [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
    [JPUSHService setBadge:0];
    
}
@end

二、SOAComponentAppDelegate.m实现

在实现类中,需要引用并注册第三方的服务类。

//
//  SOAComponentAppDelegate.h
//  ALDNews
//
//  Created by Allen on 2018/4/24.
//  Copyright © 2018年 Aladdin. All rights reserved.
//

//第三方库 组件类

#import <Foundation/Foundation.h>

@interface SOAComponentAppDelegate : NSObject

+ (instancetype)instance;
- (NSMutableArray *)services;

@end
实现类
//
//  SOAComponentAppDelegate.m
//  ALDNews
//
//  Created by 占益民 on 2018/4/24.
//  Copyright © 2018年 Aladdin. All rights reserved.
//

#import "SOAComponentAppDelegate.h"
#import "JPushService.h"
#import "VoiceService.h"

@implementation SOAComponentAppDelegate
{
    NSMutableArray * allServices;
}


#pragma mark - 服务静态注册

//根据项目要求 添加相应的服务。现在只添加JPush
- (void)registeServices{
    [self registeService:[[JPushService alloc] init]];
    [self registeService:[[VoiceService alloc] init]];
}

#pragma mark - 获取SOAComponent 单实例
+ (instancetype)instance{
    static SOAComponentAppDelegate * instance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        instance = [[SOAComponentAppDelegate alloc] init];
    });
    return instance;
}

#pragma mark - 获取全部服务
- (NSMutableArray *) services{
    if (!allServices) {
        allServices = [[NSMutableArray alloc] init];
        [self registeServices];
    }
    return allServices;
}


#pragma mark - 服务动态注册
- (void)registeService:(id)service{
    if (![allServices containsObject:service]) {
        [allServices addObject:service];
    }
}

@end

三、看下AppDelegate 上需要做哪些操作

1.AppDelegate.h 不需要做任何修改
2.AppDelegate.m 导入头文件SOAComponentAppDelegate 和JPushService

#import "AppDelegate.h"  
#import "SOAComponentAppDelegate.h"  
#import "JPushService.h"  
  
@interface AppDelegate ()  
  
@end  
  
@implementation AppDelegate  
  
  
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
      
    id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(application:didFinishLaunchingWithOptions:)]){  
            [service application:application didFinishLaunchingWithOptions:launchOptions];  
        }  
    }  
      
    return YES;  
}  
  
- (void)applicationWillResignActive:(UIApplication *)application {  
    id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(applicationWillResignActive:)]){  
            [service applicationWillResignActive:application];  
        }  
    }  
}  
  
- (void)applicationDidEnterBackground:(UIApplication *)application {  
    id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(applicationDidEnterBackground:)]){  
            [service applicationDidEnterBackground:application];  
        }  
    }  
}  
  
- (void)applicationWillEnterForeground:(UIApplication *)application {  
    id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(applicationWillEnterForeground:)]){  
            [service applicationWillEnterForeground:application];  
        }  
    }  
}  
  
- (void)applicationDidBecomeActive:(UIApplication *)application {  
    id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(applicationDidBecomeActive:)]){  
            [service applicationDidBecomeActive:application];  
        }  
    }  
}  
  
- (void)applicationWillTerminate:(UIApplication *)application {  
    id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(applicationWillTerminate:)]){  
            [service applicationWillTerminate:application];  
        }  
    }  
}  
  
@end  

这样就可以完全独立的处理每个不同的第三方服务。

四、优化

当然这里还可以有优化的地方

id<UIApplicationDelegate> service;  
    for(service in [[SOAComponentAppDelegate instance] services]){  
        if ([service respondsToSelector:@selector(applicationWillTerminate:)]){  
            [service applicationWillTerminate:application];  
        }  
    }  

项目中很多地方用到了类似这种的代码。我们也可以将这个代码块做个统一的封装。由于时间关系,我并没有做。但是可以提供一点思路

用下面的代码统一上面的代码块

-(void)thirdSDKLifecycleManager:(NSString *)selectorStr withParameters:(NSArray *)params{
    SEL selector = NSSelectorFromString(selectorStr);
    NSObject <UIApplicationDelegate> *service;
    for(service in [[SOAComponentAppDelegate instance] services]){
        if ([service respondsToSelector:selector]){
              //注意这里的performSelector这个是要自己写分类的(系统不带这个功能的)
            [service performSelector:selector withObjects:params];
        }
    }
}

后面每个生命周期函数只要调用一个方法就可以了,将相应的参数传过去就OK 了
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
      
     [self thirdSDKLifecycleManager:@"application:didFinishLaunchingWithOptions:" withParameters:@[application,launchOptions?launchOptions:@""]];
      
    return YES;  
}  

注意:

 [service performSelector:selector withObjects:params];

这个方法是要自己重写NSObject分类的
系统的只能带一个或两个参数

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

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,392评论 25 707
  • 《一个人的房间》 要做到深度休息, 首先就要"放下"。 有时候,我们明明睡了一觉,但是起来以后,却仍然感觉很累,眼...
    琳小喵阅读 132评论 0 0
  • 洗完脸抬起头看到镜子里面的我 头发剪了再剪已经不能再短了 留长吧 不想再有无助的感觉了 始终没有那个勇气去接受无论...
    兮兮而已么阅读 397评论 0 1
  • 我想保持这份单纯到无味的爱意 淡到无人发觉的爱 淡到人人误会的爱 我希望所有由你所代表的一切 安静 单纯 美好 没...
    tblanca阅读 126评论 0 0
  • 声明 本文系 sinatra 源码系列第 5 篇。系列的目的是通过 sinatra 学习 ruby 编程技巧。文章...
    coffeeplease阅读 239评论 0 0