-1

我的源代码www.point-star.net/projects/ios_download/page.zip

请点击书 2。您可以查看UITableviewCell。我需要从这些 tableview 单元格中打开我的页面视图控制器页面。

页面视图正在工作->请检查应用程序中的 book1 链接。谢谢

4

2 回答 2

0

根据您的问题,尝试将 arrayselected 中的数据推送到索引处的数组到以下视图控制器中的另一个字典实例。

- (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];
}
于 2014-07-16T02:12:41.337 回答
0

我无法运行您的代码。也许您需要实施didSelectRow.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [self presentViewController:YourSecondViewController animated:YES completion:^{
        NSLog(@"View Presented!");
    }
}
于 2013-03-27T12:07:46.637 回答