我正在创建一个具有标题、描述、视频和详细信息的新闻应用程序。这显示在 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
现在,我想要添加一个视频按钮,如情节提要上所示,以便用户单击它并能够通过 modal /popup 查看相应视频的详细信息有什么建议或帮助?