iOS 从0到1搭建高可用App框架 https://www.jianshu.com/p/d553096914ff 第三方框架学习—YYKit https://www.jia...
![240](https://cdn2.jianshu.io/assets/default_avatar/9-cceda3cf5072bcdd77e8ca4f21c40998.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
IP属地:上海
iOS 从0到1搭建高可用App框架 https://www.jianshu.com/p/d553096914ff 第三方框架学习—YYKit https://www.jia...
block表达式语法: ^返回值类型(参数列表){表达式} ^int(int count){ return count+1; }; ...... ^(int count){ ...
假设对象A调用B来执行一项操作,操作一旦完成,对象A就必须知道对象B已完成任务且对象A将执行其他必要操作。 A是B的委托对象 B引用一个A A将实现B的委托方法 B通过委托方...
// Header File that provides all UI related items. #import // Forward declaration (Us...
#import @interface ViewController : UIViewController//类方法和类属性定义@end
#import "ViewController.h" @interface ViewController () //类变量的声明 @end // 类属性声明 // 类方法和声...