0
所以,我必須使用的tableview做與搜索欄的作品名單,但現在我想在tableview中的章節導航/去一個新的視圖/ page/screen當我按下它時,任何人都可以幫助我嗎?如何使用的tableview導航到新的視圖/頁/屏幕
所以,我必須使用的tableview做與搜索欄的作品名單,但現在我想在tableview中的章節導航/去一個新的視圖/ page/screen當我按下它時,任何人都可以幫助我嗎?如何使用的tableview導航到新的視圖/頁/屏幕
在這裏你去:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[[self navigationController] pushViewController:[[SecondViewController alloc] initWithNibName:@"SecondView" bundle:[NSBundle mainBundle]] animated:YES];
}