08 2019 档案

摘要:https://honchwong.github.io/ https://developer.apple.com/library/archive/technotes/tn2151/_index.html#//apple_ref/doc/uid/DTS40008184-CH1-EXCEPTION_IN 阅读全文
posted @ 2019-08-30 16:23 雨筱逸悠 阅读(230) 评论(0) 推荐(0) 编辑
摘要:http://www.cocoachina.com/cms/wap.php?action=article&id=24864 Background Task 花式 crash Background Task 的 API 及其简单,begin 和 end 之间的代码全部进入 Background Tas 阅读全文
posted @ 2019-08-30 11:33 雨筱逸悠 阅读(2511) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/liyuanbhu/article/details/50866802 阅读全文
posted @ 2019-08-16 18:10 雨筱逸悠 阅读(530) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zzzzzdddddxxxxx/article/details/53213648 恢复(拉取)内购购买记录 https://blog.csdn.net/zhtl3333/article/details/50556610 阅读全文
posted @ 2019-08-09 16:56 雨筱逸悠 阅读(98) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/299b3a2ce5fe 阅读全文
posted @ 2019-08-06 10:21 雨筱逸悠 阅读(91) 评论(0) 推荐(0) 编辑
摘要:文件数据库读写读取可以并行,写入必须串行,如果在读写之后插入写入操作,可以通过dispatch_barrier_async操作加入到并行队列中,此时队列会按并行的方式执行完之前加入的操作,然后以串行的方式执行写入的代码,之后恢复正常处理逻辑 dispatch_apply函数,指定函数执行次数N,插入 阅读全文
posted @ 2019-08-05 09:33 雨筱逸悠 阅读(349) 评论(0) 推荐(0) 编辑
摘要:gcc 文件.m -o main -ObjC -framework Foundation 链接Foundation通过gcc编译生成main可执行文件 ./main 执行生成的main文件()在这个文件夹下面可以看到这个文件打开即执行 阅读全文
posted @ 2019-08-01 18:52 雨筱逸悠 阅读(185) 评论(0) 推荐(0) 编辑
摘要:内容来源 https://blog.csdn.net/weixin_43883776/article/details/86238958 一个解决方案 https://blog.csdn.net/qq_31490071/article/details/88870973 打了测试环境的包,在iOS11系 阅读全文
posted @ 2019-08-01 15:10 雨筱逸悠 阅读(1761) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/dcaaed1d47f2 什么是否Block会从栈复制到堆?答:当Block被当成对象进行拷贝传递赋值时(原来的内存空间会被销毁,对象方法生成Block,给到另一个对象之后该制造者就销毁了?直接赋值复制从会被销毁的对象中获取等方式均没有写出会复制到 阅读全文
posted @ 2019-08-01 14:44 雨筱逸悠 阅读(253) 评论(0) 推荐(0) 编辑
摘要:带了__block 没有带__block 阅读全文
posted @ 2019-08-01 14:24 雨筱逸悠 阅读(233) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/snsn1984/article/details/17716261 关于clang的理解 通过clang编译oc文件的配置 clang -x objective-c -rewrite-objc -isysroot /Applications/Xcode.a 阅读全文
posted @ 2019-08-01 13:49 雨筱逸悠 阅读(162) 评论(0) 推荐(0) 编辑