我有一个UITableView,当我滑动该行时,会出现删除按钮。问题是删除按钮不够宽,无法隐藏它背后的数据,这使它看起来很业余。
如何解决此问题(加宽按钮)?
答案 0 :(得分:1)
您可以更改按钮的名称并在其中添加空格。
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
return @" Delete ";
}