初めてParseを使用します。ここで何が起こっているのかよくわかりません。助けてくれてありがとう。
MainTableViewController *controller = [[PFQueryTableViewController alloc] init];
self.window.rootViewController = controller;
[self.window makeKeyAndVisible];
初めてParseを使用します。ここで何が起こっているのかよくわかりません。助けてくれてありがとう。
MainTableViewController *controller = [[PFQueryTableViewController alloc] init];
self.window.rootViewController = controller;
[self.window makeKeyAndVisible];
この行が機能するために:
MainTableViewController *controller = [[PFQueryTableViewController alloc] init];
PFQueryTableViewController
おそらくあなたのプログラムには当てはまらないものsubclass
である必要があります。MainTableViewController
あるクラスを別のクラスで初期化することはできません。これを行う
MainTableViewController *controller = [[MainTableViewController alloc] init];