我可以向 UITableView 添加一个复选框,但该复选框被 UITableView 中的文本部分隐藏。谁能告诉我如何对齐单元格中的两者,因为复选框被文本隐藏。这是添加复选框的代码。
UIButton *checkBox=[UIButton buttonWithType:UIButtonTypeCustom];
checkBox.tag=indexPath.row;
checkBox.frame=CGRectMake(2,12, 15, 15);
[cell.contentView addSubview:checkBox];
[checkBox setImage:[UIImage imageNamed:@"checkbox.png"] forState:UIControlStateNormal];
[checkBox addTarget:self action:@selector(checkBoxClicked:) forControlEvents:UIControlEventTouchUpInside];