How to change the default delete button in a table view cell in Swift?

给你一囗甜甜゛ 提交于 2020-01-14 19:32:08

问题


I want to implement this code in Swift. I got the following code for it in Objective-C from these questions:

Change the color of default red color delete button in UITableViewCell when swiping rows or click on edit button

Customize the delete button in UITableView

- (void)willTransitionToState:(UITableViewCellStateMask)state{
[super willTransitionToState:state];
if ((state & UITableViewCellStateShowingDeleteConfirmationMask) == UITableViewCellStateShowingDeleteConfirmationMask) {
    for (UIView *subview in self.subviews) {
        if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellDeleteConfirmationControl"]) {
            UIImageView *deleteBtn = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 64, 33)];
            [deleteBtn setImage:[UIImage imageNamed:@"delete.png"]];
            [[subview.subviews objectAtIndex:0] addSubview:deleteBtn];
            [deleteBtn release];
        }
    }
}
}

I don't know how to implement this method in Swift. Could anyone help me?

I am using Xcode 7.3 Beta.


回答1:


swift tableview delegate have new method. Try this may be it will resolve your problem.

func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]?{

    let ackAction = UITableViewRowAction(style: .default, title: "Himanshu", handler: myFunction)
        ackAction.backgroundColor = UIColor.orange

    return [ackAction]
}

Now you can even modify your delete functionality




回答2:


UIImageView *deleteBtn = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 64, 33)];
            [deleteBtn setImage:[UIImage imageNamed:@"delete.png"]];

Here you see your button delete.png you need to change delete.png in your images. later will change.

[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 64, 33)];

Also here you can change dimensions

Thanks



来源:https://stackoverflow.com/questions/35634544/how-to-change-the-default-delete-button-in-a-table-view-cell-in-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!