相关疑难解决方法(0)

在滑动行或单击编辑按钮时,更改UITableViewCell中默认红色删除按钮的颜色

我想UITableViewCell在点击编辑按钮或滑动UITableView行时更改减号按钮的颜色并删除按钮.到目前为止,我已实现此代码:

-(IBAction)doEdit:(id)sender
{

    [[self keyWordsTable] setEditing:YES animated:NO];
}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete) {

}
Run Code Online (Sandbox Code Playgroud)

iphone uitableview ios

37
推荐指数
2
解决办法
4万
查看次数

标签 统计

ios ×1

iphone ×1

uitableview ×1