应用很早就上线了,欢迎大家下载使用:http://itunes.apple.com/app/id1206687109
源码已经公开,大家可以去https://github.com/Inspirelife96/ILDiligence下载。 喜欢的话Fork或者给个Star,非常感谢。
下面是这一系列的全部帖子:
想法和原型
勤之时 - 架构与工程组织结构
勤之时 - 数据持久层的实现
勤之时 - 网络层的实现
勤之时 - 业务逻辑层
勤之时 - Info.plist的改动
勤之时 - 表示层(一)
勤之时 - 表示层(二)
勤之时 - 表示层(三)
勤之时 - 表示层(四)
勤之时 - 表示层(五)
个人理解的iOS分层架构
- 表示层:由UIKit Framework构成,也就是我们看到的视图,控制器,各种控件以及事件处理等内容。
- 业务逻辑层:由具体的业务而定。根据网络层和本地数据持久层,针对具体业务进行数据加工,最终提供给表示层使用。
- 本地数据持久层:提供本地数据持久,iOS提供的最基本的四种方式,分别为:属性列表,对象归档,SQLite3以及Core Data。
- 网络层:通过HTTP等访问服务器,获取需要的数据。
既然采用了分层架构,需要注意的一点是:不到万不得已,不要出现跨层依赖。
在工程组织中,如果项目简单的话,可以在同一个工程中简单的用group来分割各个分层。复杂的项目,建议一层一个工程,方便合作开发,也更能在开发过程中考虑依赖问题。
第三方库,推荐使用Cocoa Pod集成。至于不支持Cocoa Pod的第三方库,会在后面提到。
表示层工程组织结构:
Base:表示层内的基类
Category:Category都放在这个Group内
Constant:宏,常量等定义,可以根据内容分为以下几类:
Macros:常用的宏,这里都是#define相关的内容,例如:
// ILMacros.h
#define ScreenWidth [UIScreen mainScreen].bounds.size.width
#define ScreenHeight [UIScreen mainScreen].bounds.size.height
#define StatusBarHeight (20.f)
#define TopBarHeight (44.f)
#define BottomBarHeight (49.f)
#define EnglishKeyboardHeight (216.f)
#define ChineseKeyboardHeight (252.f)
URLConstants:URL的定义,推荐使用Constants,不要用#define,例如:
// ILURLConstants.h
#pragma mark - app url
extern NSString *const kAppReviewURL;
extern NSString *const kAppURL;
#pragma mark - privacy url
extern NSString *const kPrivacyURL;
// ILURLConstants.m
#pragma mark - app url
NSString *const kAppReviewURL = @"itms-apps://itunes.apple.com/app/idxxxxxxxxxx";
NSString *const kAppURL = @"http://itunes.apple.com/app/idxxxxxxxxx";
#pragma mark - privacy url
NSString *const kPrivacyURL = @"http://www.jianshu.com/p/cab88362ced0";
KeysConstants:各种key的常量,例如分享用的微信,QQ的AppID,Userdefault的Key, Notification的Key,等等,例如:
// ILKeysConstants.h
#pragma mark - IAP
extern NSString *const kIAPAdRemoved;
extern NSString *const kIAPVip;
#pragma mark - leancould
extern NSString *const kLeanCloudApplicationId;
extern NSString *const kLeanClientKey;
#pragma mark - Share SDK
extern NSString *const kShareSDKApplicationId;
#pragma mark - WeiXin
extern NSString *const kWXApplicationId;
extern NSString *const kWXApplicationSecret;
#pragma mark - QQ
extern NSString *const kQQApplicationId;
extern NSString *const kQQApplicationSecret;
#pragma mark - Userdefault
extern NSString *const kUserDefaultLastUpdatedDate;
extern NSString *const kUserDefaultTodaysData;
#pragma mark - Notification
extern NSString *const kNotificationTodaysDataChanged;
#pragma mark - Admob
extern NSString *const kAdmobBannerID;
// ILKeysConstants.m
#pragma mark - IAP
NSString *const kIAPAdRemoved = @"com.inspirelife.diligence.removead";
NSString *const kIAPVip = @"com.inspirelife.diligence.vip";
#pragma mark - Leancould
NSString *const kLeanCloudApplicationId = @"xxxxxxxxxx-xxxxxx";
NSString *const kLeanClientKey = @"xxxxxxxxx";
#pragma mark - Share SDK
NSString *const kShareSDKApplicationId = @"xxxxxxxxxx";
#pragma mark - WeiXin
NSString *const kWXApplicationId = @"xxxxxxxxxxxxx";
NSString *const kWXApplicationSecret = @"xxxxxxxxxxxxx";
#pragma mark - QQ
NSString *const kQQApplicationId = @"xxxxxxxxx";
NSString *const kQQApplicationSecret = @"xxxxxxxxxxxx";
#pragma mark - Userdefault
extern NSString *const kUserDefaultLastUpdatedDate;
extern NSString *const kUserDefaultTodaysData;
NSString *const kUserDefaultLastUpdatedDate = @"com.inspirelife.last.updated.date";
NSString *const kUserDefaultTodaysData = @"com.inspirelife.diligence.todays.data";
#pragma mark - Notification
NSString *const kNotificationTodaysDataChanged = @"notification.todays.data.changed";
#pragma mark - Admob
NSString *const kAdmobBannerBookID = @"ca-app-pub-xxxxxxxxxxxxx/xxxxxxxxxx";
NSString *const kAdmobBannerID = @"ca-app-pub-xxxxxxxxxxxxx/xxxxxxxxxx";
NSString *const kAdmobInterstitialId = @"ca-app-pub-xxxxxxxxxxxxx/xxxxxxxxxx";
NSString *const kAdmobRewardId = @"ca-app-pub-xxxxxxxxxxxxx/xxxxxxxxxx";
External:
3rd Group用来存放无法用Cocoa pod集成的第三方库
Font目录添加额外的字体
Music或者自定其他目录用来存放其他的资源
MVCs:(或者MVP,MVVM,VIPER),这基于你对表示层具体使用什么架构,在工程组织上,推荐先以功能为单位进行分组,然后每个功能模块下以MVC架构进行分组。
Resource:主要包括Storyboard,Plist以及Image Assets。推荐所有图片都放在Assets里面,并进行必要的归类。
Supporting Files:main.m, AppDeligate.h,Appdeligate.m, info.plist以及PrefixHeader.pch
Utilities: 工具类,可以再根据功能进行子分类。
参考资料:
iOS 工程组织结构分享
iOS架构师之路:工程文件组织结构设计
我的iOS工程结构
iOS应用架构谈 开篇