私のソースコードwww.point-star.net/projects/ios_download/page.zip。
ブック 2 をクリックしてくださいUITableviewCell
。これらのテーブルビュー セルからページ ビュー コントローラー ページを開く必要があります。
ページ ビューは機能しています -> アプリの book1 リンクを確認してください。ありがとう
私のソースコードwww.point-star.net/projects/ios_download/page.zip。
ブック 2 をクリックしてくださいUITableviewCell
。これらのテーブルビュー セルからページ ビュー コントローラー ページを開く必要があります。
ページ ビューは機能しています -> アプリの book1 リンクを確認してください。ありがとう
コードを実行できませんでした。たぶん、実装する必要がありますdidSelectRow
。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[self presentViewController:YourSecondViewController animated:YES completion:^{
NSLog(@"View Presented!");
}
}
あなたの質問に基づいて、配列選択されたデータをインデックスの配列に、次のビューコントローラーの辞書の別のインスタンスにプッシュしてみてください。
- (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];
}