我正在調試iOS應用程序。iOS應用程序退出時沒有日誌
當我運行
ProductListViewController *pListController = [[ProductListViewController alloc] initWithStyle:UITableViewStylePlain];
pListController.title = @"我的收藏";
//pListController.product=self.product;
pListController.opeType = Get_MyCollect;
[self.navigationController pushViewController:pListController animated:YES];
我的應用程序退出而不在我的Xcode輸出打印什麼?
有什麼想法?
我打開編輯方案
所有選項,並沒有更多的信息打印也。
什麼是'Get_MyCollect'?你確實意識到這不是一個函數調用,是的? – matt
是的,它只是一個整數。 – jeswang
你是否設置了委託並實現了所需的方法? – Alex