I am receiving an error in my main thread when i am trying to load a table with data being supplied from a different thread than main thread.
#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;
please could anyone help me solving this.... }