0
我在主線程中接收到一個錯誤,當我嘗試從不同於主線程的線程提供的數據加載表時。程序在main.m中收到SIGKILL錯誤
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
請任何人都可以幫我解決這個.... }
那麼在這種情況下,您需要在獲取數據的位置粘貼一些代碼。 –