-1

私のソースコードwww.point-star.net/projects/ios_download/page.zip

ブック 2 をクリックしてくださいUITableviewCell。これらのテーブルビュー セルからページ ビュー コントローラー ページを開く必要があります。

ページ ビューは機能しています -> アプリの book1 リンクを確認してください。ありがとう

4

2 に答える 2

0

コードを実行できませんでした。たぶん、実装する必要がありますdidSelectRow

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

あなたの質問に基づいて、配列選択されたデータをインデックスの配列に、次のビューコントローラーの辞書の別のインスタンスにプッシュしてみてください。

- (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 に答える