再次需要 X-Code 的帮助。我在 Storyboard 上建立一个这样的应用程序联系人列表:
如果我按“A”,我会进入详细信息页面。
如果我按“B”,我将进入与“A”相同的页面。
与c,D,E相同......
这是我使用的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ 静态 NSString *simpleTableIdentifier = @"PhoneA";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.textLabel.text = [PhoneBooth objectAtIndex:indexPath.row];
return cell;
}
我尝试从静态返回单元格复制/粘贴,并将单元格更改为 cell1,将 sympleTableIdentifier 更改为 sympleTableIdentifier1。
我还需要改变什么吗?
表视图工作正常。所有名称都在那里,DetailView 显示,但它总是一样的!!!!
THX 的帮助