当我的应用程序启动时,我希望rootViewController成为NavigationViewController,然后我希望第一个屏幕显示我的PFQueryTableViewController。我有完全相同的代码在我的其他项目上工作,而不是PFQueryTableViewController我有一个简单的TableViewController。我以为PFQueryTable和TableViewController一样工作吗?
以下是给我一个错误的代码(注意:这是我的AppDelegate)
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[Parse setApplicationId:@"myIDisGoingInHere" clientKey:@"myClientKeyIsGoingInHere"];
[PFUser enableAutomaticUser];
PFACL *defaultACL = [PFACL ACL];
[defaultACL setPublicReadAccess:YES];
[PFACL setDefaultACL:defaultACL withAccessForCurrentUser:YES];
self.queryTableViewController = [[QueryTableViewController alloc] initWithStyle:UITableViewStylePlain];
self.navigationViewController = [[NavigationViewController alloc] initWithRootViewController:self.queryTableViewController];
self.window.rootViewController = self.navigationViewController;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
感谢您的帮助