[iOS]AppDelegate的分类使用

2024-08-20 23:08
文章标签 使用 分类 ios appdelegate

本文主要是介绍[iOS]AppDelegate的分类使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

AppDelegate是管理整个应用程序生命周期的一个类, 之前我还会在这个类中处理很多第三方库的集成和其他功能, 比如:推送/分享/统计/启动页/引导页/广告/Bugly/版本检查/数据更新 等等. 最后导致AppDelegate非常臃肿, 不利于阅读.
最近发现,使用拓展的方式将各个功能的逻辑分离开来,能够让程序结构更清晰更优雅.

#import "AppDelegate.h"#import "AppDelegate+WeChat.h"
#import "AppDelegate+CheckVersion.h"
#import "AppDelegate+Service.h"
#import "AppDelegate+AliPush.h"
#import "AppDelegate+UMAnalysis.h"
#import "AppDelegate+UMShare.h"
#import "AppDelegate+ShortcutTouch.h"
#import "AppDelegate+Score.h"
#import "AppDelegate+AppSign.h"
#import "AppDelegate+LaunchAD.h"
#import "AppDelegate+StartNumber.h"
#import "AppDelegate+Insterest.h"
#import "AppDelegate+GuidePage.h"
#import "AppDelegate+CheckData.h"
#import "AppDelegate+Pangolin.h"
#import "AppDelegate+NightMode.h"
#import "AppDelegate+Bugly.h"
#import "AppDelegate+ReadTime.h"#import "CYLTabBarController.h"#import "IAPManager.h"
#import <UMShare/UMShare.h>@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {// Override point for customization after application launch.[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];self.tabBarControllerConfig = [[WXYZ_MainTabbarViewController alloc] init];CYLTabBarController *tabBarController = self.tabBarControllerConfig.tabBarController;[self.window setRootViewController:tabBarController];// 检查数据更改[self initCheckData];// 夜览模式[self initNightModeState];// 检查更新[self checkVersionCallBack:^(NSUInteger updateState) {}];// 开启广告[self initADManager];// 启动页[self initLaunchADView];// 引导页[self initGuidePageView];//开启阿里推送[self initAliPushWithApplication:application launchOptions:launchOptions];// 友盟[self initUMAnalysis];// 分享[self initUMShare];// 3D Touch[self initShortcutTouch];// 应用内好评[self initAppStoreScore];// bug统计[self initBugly];// 阅读时长[self initReadingTime];#if WX_Super_Member_Mode || WX_Recharge_Mode// 启动IAP[[IAPManager shared] startManager];
#endif// 微信[self registerWeChat];// 签到[self initUserSign];// 显示沙盒地址[self showHome];return YES;
}- (BOOL)application:(UIApplication *)application willFinishLaunchingWithOptions:(NSDictionary *)launchOptions {[self initStartNumber];return YES;
}- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {if ([[url host] isEqualToString:@"platformId=wechat"]) {return [[UMSocialManager defaultManager] handleOpenURL:url];}if ([[url host] isEqualToString:@"oauth"]) {return [WXApi handleOpenURL:url delegate:self];}return YES;
}- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {if ([[UMSocialManager defaultManager] handleOpenURL:url]) {return YES;}return [WXApi handleOpenURL:url delegate:self];
}- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {if ([[UMSocialManager defaultManager] handleOpenURL:url sourceApplication:sourceApplication annotation:annotation]) {return YES;}return [WXApi handleOpenURL:url delegate:self];
}- (void)applicationWillResignActive:(UIApplication *)application {// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}- (void)applicationDidEnterBackground:(UIApplication *)application {// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}- (void)applicationWillEnterForeground:(UIApplication *)application {// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}- (void)applicationDidBecomeActive:(UIApplication *)application {// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.application.applicationIconBadgeNumber = 0;if (self.forcedUpdateTitle) {[self showUpdateView];}
}- (void)applicationWillTerminate:(UIApplication *)application {// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:./**结束IAP工具类*/[[IAPManager shared] stopManager];
}@end





 

这篇关于[iOS]AppDelegate的分类使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1091435

相关文章

Python虚拟环境终极(含PyCharm的使用教程)

《Python虚拟环境终极(含PyCharm的使用教程)》:本文主要介绍Python虚拟环境终极(含PyCharm的使用教程),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录一、为什么需要虚拟环境?二、虚拟环境创建方式对比三、命令行创建虚拟环境(venv)3.1 基础命令3

Python Transformer 库安装配置及使用方法

《PythonTransformer库安装配置及使用方法》HuggingFaceTransformers是自然语言处理(NLP)领域最流行的开源库之一,支持基于Transformer架构的预训练模... 目录python 中的 Transformer 库及使用方法一、库的概述二、安装与配置三、基础使用:Pi

关于pandas的read_csv方法使用解读

《关于pandas的read_csv方法使用解读》:本文主要介绍关于pandas的read_csv方法使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录pandas的read_csv方法解读read_csv中的参数基本参数通用解析参数空值处理相关参数时间处理相关

使用Node.js制作图片上传服务的详细教程

《使用Node.js制作图片上传服务的详细教程》在现代Web应用开发中,图片上传是一项常见且重要的功能,借助Node.js强大的生态系统,我们可以轻松搭建高效的图片上传服务,本文将深入探讨如何使用No... 目录准备工作搭建 Express 服务器配置 multer 进行图片上传处理图片上传请求完整代码示例

SpringBoot条件注解核心作用与使用场景详解

《SpringBoot条件注解核心作用与使用场景详解》SpringBoot的条件注解为开发者提供了强大的动态配置能力,理解其原理和适用场景是构建灵活、可扩展应用的关键,本文将系统梳理所有常用的条件注... 目录引言一、条件注解的核心机制二、SpringBoot内置条件注解详解1、@ConditionalOn

Python中使用正则表达式精准匹配IP地址的案例

《Python中使用正则表达式精准匹配IP地址的案例》Python的正则表达式(re模块)是完成这个任务的利器,但你知道怎么写才能准确匹配各种合法的IP地址吗,今天我们就来详细探讨这个问题,感兴趣的朋... 目录为什么需要IP正则表达式?IP地址的基本结构基础正则表达式写法精确匹配0-255的数字验证IP地

使用Python实现全能手机虚拟键盘的示例代码

《使用Python实现全能手机虚拟键盘的示例代码》在数字化办公时代,你是否遇到过这样的场景:会议室投影电脑突然键盘失灵、躺在沙发上想远程控制书房电脑、或者需要给长辈远程协助操作?今天我要分享的Pyth... 目录一、项目概述:不止于键盘的远程控制方案1.1 创新价值1.2 技术栈全景二、需求实现步骤一、需求

Spring LDAP目录服务的使用示例

《SpringLDAP目录服务的使用示例》本文主要介绍了SpringLDAP目录服务的使用示例... 目录引言一、Spring LDAP基础二、LdapTemplate详解三、LDAP对象映射四、基本LDAP操作4.1 查询操作4.2 添加操作4.3 修改操作4.4 删除操作五、认证与授权六、高级特性与最佳

Qt spdlog日志模块的使用详解

《Qtspdlog日志模块的使用详解》在Qt应用程序开发中,良好的日志系统至关重要,本文将介绍如何使用spdlog1.5.0创建满足以下要求的日志系统,感兴趣的朋友一起看看吧... 目录版本摘要例子logmanager.cpp文件main.cpp文件版本spdlog版本:1.5.0采用1.5.0版本主要

Java中使用Hutool进行AES加密解密的方法举例

《Java中使用Hutool进行AES加密解密的方法举例》AES是一种对称加密,所谓对称加密就是加密与解密使用的秘钥是一个,下面:本文主要介绍Java中使用Hutool进行AES加密解密的相关资料... 目录前言一、Hutool简介与引入1.1 Hutool简介1.2 引入Hutool二、AES加密解密基础