I have an app that i'm building with phonegap (html5/js) and this @autoreleasepool error has appeared from nowhere all of a sudden and I'm not an xcode developer so unsure of how to fix this.
The code that gets highlighted is:
int main(int argc, char* argv[])
{
@autoreleasepool {
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
return retVal;
}
}
I've tried turning Automatic Reference Counting to No as per suggestions from other threads, however, this isn't working.
Any ideas what could be causing this? Thanks in advance!
Screenshot: http://cl.ly/image/2x2g33371D3w