gpt4 book ai didi

ios - 遗留单元格布局?

转载 作者:行者123 更新时间:2023-11-28 20:45:01 25 4
gpt4 key购买 nike

我在我的控制台中收到此消息,这是什么意思,我该如何解决?

2011-07-18 22:08:31.004 App[4176:707] WARNING: Using legacy cell layout due to delegate implementation of tableView:accessoryTypeForRowWithIndexPath: in <Settings: 0x250c60>. Please remove your implementation of this method and set the cell properties accessoryType and/or editingAccessoryType to move to the new cell layout behavior. This method will no longer be called in a future release.

编辑:这是 iOS,这里是方法:

    - (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath
{

switch (indexPath.row) {

case 2:
return UITableViewCellAccessoryDisclosureIndicator;
break;

case 3:
return UITableViewCellAccessoryDisclosureIndicator;
break;

case 4:
return UITableViewCellAccessoryDisclosureIndicator;
break;

}
return UITableViewCellAccessoryNone;
}

最佳答案

这意味着您正在实现一个已弃用的方法,并且系统因此正在使用向后兼容模式。

您应该完全按照消息的建议进行操作:删除您的 tableView:accessoryTypeForRowWithIndexPath: 实现,而是将适当的值分配给 accessoryType 和/或 改为编辑 AccessoryType 属性。

关于ios - 遗留单元格布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6741551/

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