1
任何人都可以請給我一些想法如何從UIButton打開新的.xib?我的意思是,如果我點擊一個按鈕,它會打開一個新窗口。如何從按鈕打開.xib點擊
任何人都可以請給我一些想法如何從UIButton打開新的.xib?我的意思是,如果我點擊一個按鈕,它會打開一個新窗口。如何從按鈕打開.xib點擊
將按鈕觸及的內部事件鏈接到UIViewController子類中的IBAction方法。在該方法中,實例化一個新的UIViewController與廈門國際銀行使用:
YourViewControllerClass *vc= [[YourViewControllerClass alloc] initWithNibName:@"YourXibName" bundle:nil];
然後,如果你有一個導航控制器,你想把它推到:
[self.navigationController pushViewController:vc animated:YES];
[vc release];
NewTableController *newTableController=[[NewTableController alloc] initWithNibName:@"NewTableController" bundle:nil];
[self.navigationController pushViewController:newTableController animated:YES];