带有图标和文本的 UITableViewRowAction

UITableViewRowAction with icon and text

那里有几个类似的问题,但我认为应该有 iOS 10 的最新答案,使用 Swift3,不使用私有 API,也不依靠你将你的图标限制为 unicode 表情符号。

我现在有 table 行包含三个操作:

func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
    let rename = UITableViewRowAction(style: .normal, title: "Rename") { (_, indexPath) in
        self.renameEntry(indexPath)
    }
    let locate = UITableViewRowAction(style: .normal, title: "Locate") { (_, indexPath) in
        self.locateEntry(indexPath)
    }
    locate.backgroundEffect = UIVisualEffect()
    let delete = UITableViewRowAction(style: .default, title: "Forget") { (_, indexPath) in
        self.deleteEntry(indexPath)
    }
    return [delete, locate, rename]
}

但是,我想要的不是带有居中文本大小和样式的颜色正方形,而是:

我尝试使用 backgroundColor,但这只是将我的图像平铺在整个按钮上,并没有改变文本的位置或颜色。所以它必须不仅仅是

theAction.backgroundColor = UIColor(patternImage: UIImage(named: "renameImage")!) 

有什么好的方法吗?

如果您不想失去自动布局的好处并获得良好的质量UI我建议您自己在单元格和三个自定义操作视图上实现滑动手势。 您还可以尝试使用图案图像中的 UI 颜色将其设置为背景 https://developer.apple.com/reference/uikit/uicolor/1621933-init 但是你应该已经在图像中渲染了图标和文本来执行此操作,并且可能不会在所有设备上看起来都很完美,在某些时候图像可能会被拉伸。

我最后做的是动态生成图像作为背景。这需要使用一个 hack/clever-trick 或两个

第一部分是标准委托方法:

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

    let stockWidth = String(repeating: " ", count: 8)
    let rename = UITableViewRowAction(style: .normal, title: stockWidth) { (_, indexPath) in
        self.renameEntry(indexPath)
    }
    self.fixAction(rename, text: "Rename", image: UIImage(named: "pencilEdit")!, color: UIColor(52, 61, 70))
    let locate = UITableViewRowAction(style: .normal, title: stockWidth) { (_, indexPath) in
        self.locateEntry(indexPath)
    }
    self.fixAction(locate, text: "Locate", image: UIImage(named: "locatePin")!, color: UIColor(38, 107, 215))
    let delete = UITableViewRowAction(style: .normal, title: stockWidth) { (_, indexPath) in
        self.deleteEntry(indexPath)
    }
    self.fixAction(delete, text: "Forget", image: UIImage(named: "triggerDeleteSelector")!, color: UIColor(227, 34, 60))
    let gap = UITableViewRowAction(style: .normal, title: "") { (_, _) in
        // pass
    }
    gap.backgroundColor = UIColor.clear
    return [gap, delete, locate, rename]
}

这里有两个不明显的细节。首先,该动作从传入的文本字符串中获取其宽度。如果您没有通过一些 non-visible space 字符给它一些宽度,背景图像将没有任何区域可以绘制. 这就是前 3 个操作中使用 stockWidth 字符串的原因。它的 8 个字符宽度由生成背景图像的 fixAction 方法共享。

第二个细节是在底部包含第四个 "gap" 动作。出于某种原因,如果第一个动作有一个瓷砖图案的背景涂料,它会在其他动作下向左拉伸。我发现我必须在前面插入这个零宽度无操作动作来避免这种情况。

func fixAction(_ action:UITableViewRowAction, text:String, image:UIImage, color:UIColor) {
    // make sure the image is a mask that we can color with the passed color
    let mask = image.withRenderingMode(.alwaysTemplate) 
    // compute the anticipated width of that non empty string
    let stockSize = action.title!.sizeWithAttributes([NSFontAttributeName: UIFont.systemFont(ofSize: 18)])
    // I know my row height
    let height:CGFloat = 70
    // Standard action width computation seems to add 15px on either side of the text
    let width = (stockSize.width + 30).ceiling 
    let actionSize = CGSize(width: width, height: height)
    // lets draw an image of actionSize
    UIGraphicsBeginImageContextWithOptions(actionSize, false, 0.0)
    if let context = UIGraphicsGetCurrentContext() {
        context.clear(CGRect(origin: .zero, size: actionSize))
    }
    color.set()
    let attributes = [NSForegroundColorAttributeName: color, NSFontAttributeName: UIFont(name: "Avenir-Book", size: 13)]
    let textSize = text.size(attributes: attributes)
    // implementation of `half` extension left up to the student
    let textPoint = CGPoint(x: (width - textSize.width).half, y: (height - (textSize.height * 3)).half + (textSize.height * 2))
    text.draw(at: textPoint, withAttributes: attributes)
    let  maskHeight = textSize.height * 2
    let maskRect = CGRect(x: (width - maskHeight).half, y: textPoint.y - maskHeight, width: maskHeight, height: maskHeight)
    mask.draw(in: maskRect)
    if let result = UIGraphicsGetImageFromCurrentImageContext() {
        // adjust the passed in action's backgroundColor to a patternImage
        action.backgroundColor = UIColor(patternImage: result)
    }
    else {
        "WTH!!!".logError()
    }
    UIGraphicsEndImageContext()
}

在 iOS 13 上,UITableViewRowAction 已弃用,改为使用 UISwipeActionsConfiguration,您可以在此处根据要求添加图像和背景颜色