
Object-C
netluoriver
80后,做融合通信行业16年。
SIP voip 测试交流群: 323827101。
文章为只自己做备忘,无任何参考价值。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
开启线程后开辟stacksize 最小为多少
开启线程后开辟stacksize 最小为多少原创 2015-09-10 14:50:56 · 3164 阅读 · 0 评论 -
runtime之实现方法交换(简单版本)
Person.h文件 #import @interface Person : NSObject /** * 类方法run */ + (void)run; /** * 类方法eat */ + (void)eat; /** * 对象方法run */ - (void)run; /** * 对象方法eat */ - (void)eat; @end Pe原创 2015-10-04 22:48:43 · 593 阅读 · 0 评论 -
The request was denied by service delegate (SBMainWorkspace) for reason: Security ("Entitlement "com
The request was denied by service delegate (SBMainWorkspace) for reason: Security ("Entitlement "com.apple.frontboard.debugapplications" required to launch applications for debugging"). 重启模拟器就可原创 2017-02-04 20:30:19 · 3393 阅读 · 0 评论 -
代码中打印description的方法
如果想要打印LSStatusViewModel的内容,class LSStatusViewModel { var status: LSStatus init(model: LSStatus) { self.status = model } }只需要继承CustomStringConvertible 协议就可以了,代码如下:cla...原创 2018-02-20 16:10:44 · 453 阅读 · 0 评论