我有一个侧面菜单应用程序。
我有2ViewController
和.RearViewController
FrontViewController
在RearViewController
我有一个tableView
并且我希望应用程序开始FrontViewController
加载该表中的第一个元素时。
我试过添加
frontViewController.category = [rearViewController.fetchedResultsController objectAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
in AppDelegate
,但它得到的只是一个 nil 对象。谢谢你。