1. 程式人生 > >iOS 多線程,ARC

iOS 多線程,ARC

log found evel ios 多線程 自動釋放 釋放 無法 -c 線程

iOS自己創建的線程需要自己定時的創建autorelease pools,否則對象不能及時自動釋放。

方法1是不對的,while中的對象會無法及時釋放。

1:
-(void)Thread{ @autoreleasepool { while(1){ } } } 2: -(void)Thread{ while (1) { @autoreleasepool { } } }

https://developer.apple.com/documentation/foundation/nsautoreleasepool

iOS 多線程,ARC