1

タイトル、説明、ビデオ、および詳細を含むニュース アプリを作成しています。これは TableView の UIViewCell に表示され、ユーザーがその特定のセルをクリックすると、対応するニュースが次のように表示されます。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    NewsViewController *newsdetail = [[NewsViewController alloc] initWithNibName:@"NewsDetailView" bundle:nil];
    self.newsdetails = detail;
    [detail release];

    newsdetails.title = [NSString stringWithFormat:@"%@",[titleData objectAtIndex:indexPath.row]];
    newsdetails.itemID = [NSString stringWithFormat:@"%@",[NewsIds objectAtIndex:indexPath.row]];

    [self.navigationController pushViewController:newsdetails animated:YES];

}

変数 (JSON データを保持する) は NewsViewController で適切に定義され、次のように合成されます。

NSMutableArray *NewsIds;
NSMutableArray *titleData;
NSMutableArray *descriptionData; etc

ここに画像の説明を入力 今、私が欲しいのは、ストーリーボードに表示されているようにビデオ ボタンを追加して、ユーザーがクリックして、モーダル/ポップアップを通じて対応するビデオの詳細を表示できるようにすることです。提案やヘルプはありますか?

4

2 に答える 2