MVC
- Model:模型
- View:视图
- Controller:控制器
单例
单例使用懒加载方式在第一次实例时创建,如[NSUserDefaults standardUserDefaults],[UIApplication sharedApplication],[UIScreen mainScreen],[NSFileManager defaultManager]
系统的单例类
- UIApplication
- NSNotificationCenter
- NSFileManager
- NSUserDefaults
- NSURLCache
- NSHTTPCookieStorage
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| @interfaceLibraryAPI : NSObject
+ (LibraryAPI*)sharedInstance;
@end
+ (LibraryAPI*)sharedInstance
{
// 声明一个静态变量去保存类的实例,确保它在类中的全局可用
static LibraryAPI *_sharedInstance = nil;
// dispatch_once_t确保初始化器只执行一次
static dispatch_once_t oncePredicate;
// 单例的关键,一旦类被初始化,初始化器不会再被调用
dispatch_once(&oncePredicate, ^{
_sharedInstance = [[LibraryAPI alloc] init];
});
return _sharedInstance;
}
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| @implementation XNShareTool
static XNShareTool *_instance;
+(id)allocWithZone:(struct _NSZone *)zone{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_instance = [super allocWithZone:zone];
});
return _instance;
}
+(instancetype)sharedTool{
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_instance = [[XNShareTool alloc] init];
});
return _instance;
}
-(id)copyWithZone:(NSZone *)zone{
return _instance;
}
@end
|
门面模式Facade
暴露接口
装饰器模式Decorator
常见的实现是Category和Delegation,
适配器模式Adapter
包装一个对象暴露一个标准的接口。可以使用协议的方式实现,比如UITableViewDelegate,UIScrollViewDelegate,NSCoding和NSCopying协议。
观察者模式Observer
Notifications和Key-Value Observing(KVO)都是这个设计模式
备忘录模式Memento
比如NSUserDefaults,或者用类似的方式进行状态保存使得再次进入时能够和离开时一样。可以使用UIApplicationDidEnterBackgroundNotification 这个通知去保存状态。
命令模式
通过Target-Action机制和Invocation实现命令模式