使用MGSwipeTableCell自定义单元格滑动 - 未显示按钮/空白色

时间:2016-08-22 16:00:21

标签: swift uitableview github

根据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的子类。

我的意思截图: enter image description here

---更新:

因此,对于简单测试,我还添加了向右滑动,左侧有按钮。他们确实表现出来。在右边仍然没有显示: enter image description here

0 个答案:

没有答案