我在Viewbased應用程序中有UIViewController。 我想推出另一個UIViewcontroller。如何推UIViewController
-(IBAction) Myfunction
{
MedicineSearchSystem *medicineSearchSystem = [[MedicineSearchSystem alloc] initWithNibName:@"MedicineSearchSystem" bundle:nil];
[self.parentViewController:medicineSearchSystem animated:YES]; // Crash here
}
爲了將新的視圖控制器推送到堆棧上,您現有的視圖必須有一個「UINavigationController」作爲其父項。看起來你的代碼在你發佈時可能已經被破壞了,但是相關的方法是'pushViewController:animated:' – warrenm 2010-07-22 05:54:51