本文主要是介绍*** __NSAutoreleaseNoPool(): Object 0x6013810 of class __NSArrayI autoreleased with no pool in place,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
被这个问题折腾了一夜,终于找到原因了。
网上大部分人说的是当perforSelectorInBackground线程里时,不要忘记手动 添加autoreleasepool(如何添加请参见main。m)
我犯的错误是定义了全局变量
NSArray *gFiles = [NSArray arrayWithObjects:@"xxx",@"xxx",@"xxx", nil];
这篇关于*** __NSAutoreleaseNoPool(): Object 0x6013810 of class __NSArrayI autoreleased with no pool in place的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!