老大要求研究ReactiveCocoa并使用它来实现MVVM的开发模式,所以写一篇blog来记录笔记如果哪位看官看完举得有错误请及时指出,小弟也好从错误中尽快走出来哈。
2015.1.29
Reactive Cocoa (下简称RAC)是Git 上的大大写出来了,查了许多资料后发现原来有时候别人写的小编真的比苹果大大的强许多。
RAC本质上是把消息传递机制转换成了一个信号模式,所以使用RAC能很容易的实现MVVM的开发模式并可以将UI层和逻辑层有效的分离出来。有个Demo就是用一句话实现一个显示时间的Label,代码就不上了哈。
继续研究。
2015.1.30
http://www.kuqin.com/shuoit/20140704/340986.html
看来好厉害- -。
今天把RAC的所有组件都实现了一遍,然后尽快用RAC来实现一个SampleDemo。
2015.2.2
报错 “ReactiveCocoa.h not found"
解决办法:
I had the same problem.
At the top of your podfile write this line:
link_with ['ProjectName','ProjectNameTests']
install pod,and at your project Build Setting->Other Linker Flags,add$(inherited)
.
That happened because Tests Couldn't find pods.
http://stackoverflow.com/questions/25970560/prefix-pch-reactivecocoa-racextscope-h-file-not-found-error
被调去研究OCR了,暂时停更。。