oc消息机制
https://www.cnblogs.com/zhaoyunboy/p/objc_msgsend-and-msg-forwarding.html
https://www.jianshu.com/p/38f013075e9a
https://blog.ibireme.com/2013/11/25/objc-object/
https://blog.csdn.net/gigibondbaby/article/details/82145254
消息转发
https://blog.csdn.net/philm_ios/article/details/81201911
深拷贝浅拷贝
https://www.cnblogs.com/beckwang0912/p/7212075.html
主线程与主队列
http://sindrilin.com/2018/03/03/weird_thread.html
iOS 多任务全部执行完后再执行操作
https://blog.csdn.net/hero_wqb/article/details/80271206
同步、异步、阻塞、非阻塞概念
https://www.cnblogs.com/mhq-martin/p/9035640.html
死锁
https://www.jianshu.com/p/014c291e6ee2
堆和栈
https://www.cnblogs.com/fengmin/p/6141417.html
GPU与CPU
http://www.sohu.com/a/201309334_468740
https://baijiahao.baidu.com/s?id=1607950702225909617&wfr=spider&for=pc
缓存淘汰算法
https://blog.csdn.net/varyall/article/details/79099847
分类为什么不可以添加属性
https://www.jianshu.com/p/eebc2acd7da0
封装网络请求库考虑哪些问题?
HTTPS协议的验证过程?
https://limboy.me/tech/2011/02/19/https-workflow.html
NSString用copy还是用strong
https://www.cnblogs.com/AlvinCrash/p/5379455.html
事件响应者链
https://blog.csdn.net/weixin_42657552/article/details/81033994
https://developer.apple.com/documentation/uikit/touches_presses_and_gestures/using_responders_and_the_responder_chain_to_handle_events
主键与索引
https://www.cnblogs.com/iwangzhch/p/3990381.html
什么是索引
https://zhidao.baidu.com/question/92889097.html
索引原理
https://blog.csdn.net/qq_32126633/article/details/81089573
self与super
https://blog.csdn.net/li15809284891/article/details/54836905
冒泡排序
将block放入数组中
https://blog.csdn.net/pandarawen/article/details/11522993
https://blog.csdn.net/u014600626/article/details/78697535
UI操作为什么一定要在主线程
UIKit并不是一个 线程安全 的类,UI操作涉及到渲染访问各种View对象的属性,如果异步操作下会存在读写问题,而为其加锁则会耗费大量资源并拖慢运行速度。另一方面因为整个程序的起点UIApplication是在主线程进行初始化,所有的用户事件都是在主线程上进行传递(如点击、拖动),所以view只能在主线程上才能对事件进行响应。而在渲染方面由于图像的渲染需要以60帧的刷新率在屏幕上 同时 更新,在非主线程异步化的情况下无法确定这个处理过程能够实现同步更新。
链接:https://juejin.im/post/5c406d97e51d4552475fe178
https://mp.weixin.qq.com/s/4eniMFuwoDDDfStDJ8o5Hw