我有以下问题:我有一个 UITableView。如果单击一个单元格,则会在单元格上添加一个按钮。到目前为止没问题...但是:添加按钮后,我希望 TableView(重新加载后)选择刚刚编辑(或添加)的 TableCell。我已经尝试过这个cellForRowAtIndexPath
方法
if (bool) {
[cell setSelected:YES animated:YES];
}
UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor colorWithRed:34/255.0 green:139/255.0 blue:34/255.0 alpha:1.0]];
[cell setSelectedBackgroundView:bgColorView];
[bgColorView release];
return cell;
但它没有用。任何建议或示例代码将不胜感激。谢谢 。