问题描述
- 怎样选择tableview中的某一行,并让他这行变颜色?
- 同上。我是结合coredata 的,最好说详细点,给点意见参考。怎样实时更新改变后的行。
解决方案
解决方案二:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.contentView.backgroundColor = [UIColor blueColor];
}
时间: 2024-10-29 14:04:44