我有一个从 web 加载 JSON 内容的 TableView。我使用 AFNetworking 和 JSONModel。我使用本教程接收和解析数据这是代码。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *identifier = @"CellIdentifier";
__weak ProgramacaoTableCell *cell = (ProgramacaoTableCell *)[self.tableView dequeueReusableCellWithIdentifier:identifier];
ProgramacaoModel* programacao = _programacao.programacaoArray[indexPath.row];
// NameLabel is the Label in the Cell.
cell.nameLabel.text = [NSString stringWithFormat:@"%@", programacao.atracao ];
return cell;
}
我想知道如何将这些数据传递给 Detail ViewController。在我的 DetailViewController 中,我具有接收数据的属性。
@property (nonatomic, strong) IBOutlet UILabel *programacaoNomeLabel;