所以,我已经将UITableViewCell子类化了,它在最左边有一个标签,在最右边有另一个标签。点按时,它应在右侧标签中滑动,并添加复选标记。
复选标记的作用,但是放在标签的顶部。
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([tableView cellForRowAtIndexPath:indexPath].accessoryType; == UITableViewCellAccessoryCheckmark)
{
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}else
{
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}
}