gpt4 book ai didi

ios - UITableView - "unable to dequeue a cell with identifier"

转载 作者:行者123 更新时间:2023-12-02 06:21:08 27 4
gpt4 key购买 nike

问题出在哪里?我想制作一个表格 View ,如果您单击单元格,它会弹出另一个表格 View 我必须做什么来解决这个问题?

    - (UITableViewCell )tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
static NSString *CellIdentifier2 = @"TableViewCell_2";
TableViewController_2 *cell2 = (TableViewController_2)[self.tableView dequeueReusableCellWithIdentifier:CellIdentifier2 forIndexPath:indexPath];
// Configure the cell...
int row = [indexPath row]; cell2.Spoj = _Spoj[row];
return cell2;
}

最佳答案

tableView:cellForRowAtIndexPath: 中使用 dequeueReusableCellWithIdentifier: 而不是 dequeueReusableCellWithIdentifier:forIndexPath:

关于ios - UITableView - "unable to dequeue a cell with identifier",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23024088/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com