線程安全的MSWeakTimer是NSTimer的替代品,最基本的特色是它不會 retain target 以及支持GCD queues。 安全
關於 NSTimer 中 target 的生命週期問題,嘯笑天同窗在他的博客中說的很清楚了。當 repeat 爲 YES 時NSTimer 會 retains 它的 target,那麼target的生命週期就成了問題,徹底的交給了這個timer,只有當timer 調用invalidate後 dealloc 纔有機會發生。 ide
另外一個問題是GCD,在蘋果的官方文檔中說的很清楚: oop
You must send this message from the thread on which the timer was installed. If you send this message from another thread, the input source associated with the timer may not be removed from its run loop, which could prevent the thread from exiting properly. this
invalidate必須由安裝這個timer的線程發起,不然這個timer有可能不會從run loop中移除。這種狀況會發生的一個狀況就是: 當這個線程是由 GCD 管理的。 這是由於 NSTimer 依賴於當前線程的run loop, 而GCD徹底是另一回事, 它不能確保timer的阻塞和invalidate是由同一個線程發起的, run loop和queue將會交織在一塊兒,世界就亂了...
而MSWeakTimer徹底就不是用run loop實現的,因此就不用考慮那麼多了,它能夠與GCD和諧共存,被任意線程 install 和 invalidate。 spa
那它是如何使用和實現的呢,稍後分析它的源碼... 線程