I'm new to xcode and I'm trying to create an app which uses an sqlite database to display some data but I get this line of code highlighted in AppDelegate.h when running the simulator.
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
I tried a few solutions from similar questions but I couldn't fix it. any suggestions?
IBOutletCollections specifically. You may have assumed that the type of one is supposed to be the type of it's member outlets. Turns out it's only supposed to be either NSArray or NSMutableArray. Check your property declarations.