首页 > 代码库 > 黑马程序员------了解到的一些设计模式

黑马程序员------了解到的一些设计模式

------<a href="http://www.itheima.com" target="blank">Java培训、Android培训、iOS培训、.Net培训</a>、期待与您交流! -------

oc中常见的设计模式:

1.代理设计模式,这是oc中常见的设计模式,也是应用最广泛的设计模式。

2.通知,通知的话,用到的通知中心,这些只是了解一些。

a.发布通知:

 [[NSNotificationCenter defaultCenter] postNotificationName:@"" object:nil];

b。注册通知:

 [[NSNotificationCenter defaultCenter] addObserver:self selector:nil name:nilobject:nil];

c.注销通知

[[NSNotificationCenter defaultCenter] removeObserver:self];

希望后期学习中不断的深入

3.kvo/kvc,这两个都是比较有用的设计模式,也是非常使用的。希望更加透彻的了解吧

 

黑马程序员------了解到的一些设计模式