赞
踩
iOS项目工程中,AppDelegate管控辅助类执行域里面的指令码杂乱无章。任何模块只要存在业务功能方面的需要,就会往AppDelegate辅助类执行域中添加各种方法函数。特别是已完成启动相关的协议代理函数didFinishLaunchingWithOptions: 方法内涉及到各种定义权限注册通知等等指令更加复杂。把管控辅助类AppDelegate和Main函数之前的启动耗时写在一起?因为合理且统一的模块调用方式方便于批量化复制,可以更好的去统计每个模块调用的耗时,实现更精细化的监控。
1.抽象统一的方法;
路由器:设备工具:传输网络信息工具–>渠道 路由辅助类Router
在模块的区域外统一触发各个模块内部自定义自声明的某个方法/在某个位置触发其他模块内部自定义的某个方法(待触发方法的触发路径)
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
NSArray *modules = @[@"Module1",@"Module2",@"Module3",@"Module4",@"Module5"];//模块名组
for (NSString *module in modules) {
//获取开始时间
CFAbsoluteTime start = CFAbsoluteTimeGetCurrent();
//调用模块内方法
NSString *url = [NSString stringWithFormat:@"%@://didFinishLaunchingWithOptions",module];//待触发方法的触发路径
[Router openUrl:url];//路由辅助类Router触发url路径下方法didFinishLaunchingWithOptions
//获取消耗时间cost(因为调用模块内方法消耗的时间)
CFAbsoluteTime cost = CFAbsoluteTimeGetCurrent() - start;
//记录、上报cost
...
}
return YES;
}
将AppDelegate文件蔟制作成静态库如AppDelegate.framework。main函数中修改(非pods工程,记得在Other Linker Flags中添加-force_load ,避免链接时被优化):
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, @"AppDelegate"));
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。