我正在尝试编写一个连接到我的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是我要插入的数组。

最佳答案

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"dataSelect"; //Name of table view

    if (tableView == tableview1) {
        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;
    } else if (tableview == tableview2) {

        // do actions related to tableview 2 here

    } else {

         // and so on
    }


}

关于ios - objective-c -iOS多表 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17380273/

10-08 20:57