我有一個側面菜單的應用程序。啓動時在視圖控制器之間傳遞數據
我有2 ViewController
的RearViewController
和FrontViewController
。
在RearViewController
我有一個tableView
,我希望一旦應用程序啓動FrontViewController
加載該表中的第一個元素。
我曾嘗試加入
frontViewController.category = [rearViewController.fetchedResultsController objectAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
在
AppDelegate
,但所有它得到的是一個零對象。 謝謝。
它將在AppDelegate中成爲零,因爲它在AppDelegate中沒有任何價值......直到包含它們的方法被調用時,您的對象纔會有值! – 2012-07-31 13:01:26
是的,我想過這個。 – Devfly 2012-07-31 13:08:32
你想要什麼..... ???你想要變後退? 這怎麼可能? – TheTiger 2012-07-31 13:19:35