摘要: 环信框架-消息模块 阅读全文
posted @ 2018-05-28 14:21 u37kl 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 屏幕适配问题 阅读全文
posted @ 2018-05-25 09:01 u37kl 阅读(81) 评论(0) 推荐(0) 编辑
摘要: iOS-NSSession 阅读全文
posted @ 2018-05-25 09:01 u37kl 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1、配置对象 2、登录模块 3、登录功能的代理模块 4、自动登录与被动退出 5、退出 6、代码写法 阅读全文
posted @ 2018-05-25 09:00 u37kl 阅读(257) 评论(0) 推荐(0) 编辑
摘要: cell加载不出来 阅读全文
posted @ 2018-05-10 00:09 u37kl 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1、有些OC对象不能使用 "__weak" 修饰,因为有些类自己重写了retain和release方法,不支持__weak,例如NSPort类和它的子类。 2、在dealloc中不能使用 “__weak __typeof(self)weak_self = self;”,否则程序会崩溃。 阅读全文
posted @ 2018-05-08 23:25 u37kl 阅读(964) 评论(0) 推荐(0) 编辑
摘要: MVVM与MVC 阅读全文
posted @ 2018-05-08 11:10 u37kl 阅读(91) 评论(0) 推荐(0) 编辑
摘要: Notification 阅读全文
posted @ 2018-05-07 23:56 u37kl 阅读(174) 评论(0) 推荐(0) 编辑
摘要: block 阅读全文
posted @ 2018-05-06 15:17 u37kl 阅读(67) 评论(0) 推荐(0) 编辑
摘要: static 修饰局部变量:延长布局变量的生命周期static 修饰全局变量:当前变量只能在当前文件中使用static 修饰函数: 函数只能在当前文件中使用 静态:与程序的生命周期相同的数据结构,从程序启动时就存在,当程序停止时才被销毁。 静态变量:分为局部静态变量和全局静态变量两种,必须使用 “s 阅读全文
posted @ 2018-04-23 23:57 u37kl 阅读(403) 评论(0) 推荐(0) 编辑