我正在尝试编写一个连接到我的 Web 服务并在表格视图中显示数据的应用程序。我还有一个用于菜单的静态表格视图。静态表视图有效(响应点击、显示选项等),但我很难让第二个表视图正常工作。每个窗口不超过 1 个表视图。我将添加大约 10 个表视图。
静态表格视图的代码:
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"dataSelect"; //Name of table view
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
tableData 是我要插入的数组。