gpt4 book ai didi

ios - 无法在 UITableviewCell 中选择行

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:42:54 25 4
gpt4 key购买 nike

friend ,我一直在尝试在我的 UITableView 单元格中设置默认选中标记,这是我的代码,请看一下,我在获得我想要的输出时遇到了严重的麻烦

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *cellIdent = @"cell1111";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdent];
if (tableView==_ShapeSelectionTable)
{

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [_ShapeSelectionTable dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

}

if([_selectedShapeArray containsObject:[_shapeArray objectAtIndex:indexPath.row]] || [_selectedShapeArray containsObject:@"Check All"]) {

cell.accessoryType = UITableViewCellAccessoryCheckmark;

}
else
{
cell.accessoryType = UITableViewCellAccessoryNone;
}
for (NSString *s in _shaperesultArray)
{
for (int i=0; i<self.shapeArray.count; i++)
{
NSIndexPath *myIdx=[NSIndexPath indexPathForRow:i inSection:0];
ShapeInfo *shap=[self.shapeArray objectAtIndex:i];


if ([shap.shape isEqualToString:s])
{


cell = [[self ShapeSelectionTable] cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
cell.accessoryType=UITableViewCellAccessoryCheckmark;
//[tableView selectRowAtIndexPath:myIdx animated:TRUE scrollPosition:UITableViewScrollPositionNone];
}
else
{
cell.accessoryType=UITableViewCellAccessoryNone;
}

}
}
ShapeInfo *shap=[_shapeArray objectAtIndex:indexPath.row];

cell.textLabel.text=shap.shape;

return cell;
}

我想从我的 ResultInfo 获得以下输出,Cell 应该记住配件类型 enter image description here

friend 们,我在使用我的 JSON 对象中的 preCheckmark(Cell Accessory) 时遇到了问题注意我从 Web 获取 JSON 格式的输出任何帮助将不胜感激..谢谢

更新当我运行这段代码时出现异常 -[UITableView _configureCellForDisplay:forIndexPath:],/SourceCache/UIKit_Sim/UIKit-2935.137/UITableView.m:6509 断言失败2014-06-24 14:14:24.306 TheGemHubApp[2405:60b] * 由于未捕获的异常“NSInternalInconsistencyException”而终止应用程序,原因:“UITableView 数据源必须从 tableView 返回一个单元格:cellForRowAtIndexPath:”**

enter image description here

最佳答案

2935.137/UITableView.m:6509 2014-06-24 14:14:24.306 TheGemHubApp[2405:60b] Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:'*

我猜这个异常发生在这行代码

 cell = [[self ShapeSelectionTable] cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];

你应该在这里放置一些断点并模拟正在发生的事情。

关于ios - 无法在 UITableviewCell 中选择行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24381935/

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