好记性不如 烂笔头,趁热记录下,给未来的自己
标签: 面试
-
如何在 https 的 iframe 里访问 http 页面? | nginx应用实战-3
-
2023年末 – iOS 实时面试题:如何解决 NSTimer 引发的循环引用问题?
首要思考下为什么只需提到 NSTimer 就会与循环引证挂钩?首要的原因是:NSTimer 目标会强引证传入的 target,所以 iOS 10 今后,苹果给了咱们一个 NSTimer 的 block 为参数的 API,还特意嘱咐了咱们:
- parameter: block The execution body of the timer; the timer itself is passed as the parameter to this block when executed to aid in avoiding cyclical references
,帮助咱们避免循环引证。