我的源代码www.point-star.net/projects/ios_download/page.zip。
请点击第2册。您可以查看UITableviewCell
。我需要从这些tableview单元格中打开页面视图控制器页面。
网页浏览工作正在>请查看应用中的book1链接。感谢
答案 0 :(得分:0)
我无法运行您的代码。也许您需要实施didSelectRow
。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self presentViewController:YourSecondViewController animated:YES completion:^{
NSLog(@"View Presented!");
}
}
答案 1 :(得分:0)
根据您的问题尝试将数据从数组中选择的数据推送到以下viewcontroller中的另一个字典实例。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// if you want to use the current value of row
dictionaryforanotherview = [Arrayinthisview objectAtIndex:indexPath.row];
//get that show detail controller going
mypageviewcontroller *hola = [[mypageviewcontroller alloc] initWithNibName:@"mypageviewcontroller" bundle:[UtilityQVC resourceBundle]];
[thisviewcontroller.navigationController pushViewController:hola animated:YES];
}