iOS 应用在手动kill进程时,却再次调用了main函数的初始化,进而调用了AppDelegate的相关方法,进一步调用了部分页面的生命周期;
现象:app启动时没有调用部分接口,而是kill进程时调用了,再一些业务场景内是不能满足业务需求的
排查原因如下:
app的通知角标显示清除功能相关代码造成
- (void)bk_clearBadge {
// 注释iOS11及以上代码,在iOS11及以上的APP沙盒内查看启动次数
if (@available(iOS 11.0, *)) {
[UIApplication sharedApplication].applicationIconBadgeNumber = -1;
} else
if (@available(iOS 10.0, *)) {
UNMutableNotificationContent *content = [[UNMutableNotificationContent alloc] init];
content.badge = @(-1);
UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@"clearBadge" content:content trigger:nil];
[[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
}];
} else {
UILocalNotification *clearEpisodeNotification = [[UILocalNotification alloc] init];
clearEpisodeNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:1];
clearEpisodeNotification.timeZone = [NSTimeZone systemTimeZone];
clearEpisodeNotification.applicationIconBadgeNumber = -1;
[[UIApplication sharedApplication] scheduleLocalNotification:clearEpisodeNotification];
}
}
在进入后台时,*- (void)applicationDidEnterBackground:(UIApplication )application; 内调用清除角标时,存在以下2种情况;
1、兼容iOS11及以上的角标重置,不会造成kill应用时再次初始化main函数;
2、删除兼容iOS11及以上的角标重置,会造成kill应用再次初始化main函数;
解决方案:如上代码