滑动删除后,TableView图像未对齐

时间:2015-08-07 11:38:45

标签: ios swift uitableview xcode6

滑动后,我的表格视图单元格显示未对齐。

screenshot

这里有tableView函数:

func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
    if (editingStyle == UITableViewCellEditingStyle.Delete) {
        // handle delete (by removing the data from your array and updating the tableview)
        deleteItemFromCart(indexPath)
    }
}

我正在使用带有约束的自定义单元格: custom cell

我看了this question,但它对我没有帮助。

0 个答案:

没有答案