标签:dev tor nsa 否则 var doc variant epo 对象
iOS自己创建的线程需要自己定时的创建autorelease pools,否则对象不能及时自动释放。
方法1是不对的,while中的对象会无法及时释放。
1:
-(void)Thread{ @autoreleasepool { while(1){ } } } 2: -(void)Thread{ while (1) { @autoreleasepool { } } }
https://developer.apple.com/documentation/foundation/nsautoreleasepool
标签:dev tor nsa 否则 var doc variant epo 对象
原文地址:http://www.cnblogs.com/mlj318/p/7465012.html