根据MGSwipeTableCell上的指南,我试图在向左侧滑动细胞时实施按钮。它们现在可以滑动,但是,按钮没有显示,它只是按钮所在的白色空间。
这是某种层问题还是背景问题?
我有什么:
dataSource?.populateCellWithBlock { (cell: UITableViewCell, obj: NSObject) -> Void in
let customCell = cell as! CustomCellTableViewCell
customCell.rightButtons = [MGSwipeButton(title: "Delete", backgroundColor: UIColor.redColor())
,MGSwipeButton(title: "More",backgroundColor: UIColor.lightGrayColor())]
customCell.rightSwipeSettings.transition = MGSwipeTransition.Rotate3D
... }
CustomCellTableViewCell
显然是MGSwipeTableCell
的子类。
---更新: