2

在我的应用程序中,我想使用UITableViewRowAction图像而不是标题文本。我使用以下方法设置背景图像:

let edit = UITableViewRowAction(style: .Normal, title: "Edit") { action, index in
  self.indexPath = indexPath
  self.performSegueWithIdentifier("toEdit", sender: self)
}
edit.backgroundColor = UIColor(patternImage: UIImage(named: "edit")!)

然而图像出现了很多次。

在此处输入图像描述

如何解决此问题以使一行中只有一个图像?

4

2 回答 2

1

问题是用作图案的图像不适合空间,它将重复以填充它。拥有非重复图像的一种选择是

  • 使用固定高度的 UITableViewCell
  • 使用适合该高度的图像
于 2017-05-26T09:39:11.717 回答
0

我写了一个子类UITableViewRowAction来帮助你计算标题的长度,你只需传递 rowAction 和图像的大小。

class CustomRowAction: UITableViewRowAction {

    init(size: CGSize, image: UIImage, bgColor: UIColor) {
        super.init()

        // calculate actual size & set title with spaces
        let defaultTextPadding: CGFloat = 15  
        let defaultAttributes = [ NSFontAttributeName: UIFont.systemFont(ofSize: 18)]   // system default rowAction text font
        let oneSpaceWidth = NSString(string: " ").size(attributes: defaultAttributes).width
        let titleWidth = size.width - defaultTextPadding * 2
        let numOfSpace = Int(ceil(titleWidth / oneSpaceWidth))

        let placeHolder = String(repeating: " ", count: numOfSpace)
        let newWidth = (placeHolder as NSString).size(attributes: defaultAttributes).width + defaultTextPadding * 2
        let newSize = CGSize(width: newWidth, height: size.height)

        title = placeHolder

        // set background with pattern image

        UIGraphicsBeginImageContextWithOptions(newSize, false, UIScreen.main.nativeScale)

        let context = UIGraphicsGetCurrentContext()!
        context.setFillColor(bgColor.cgColor)
        context.fill(CGRect(origin: .zero, size: newSize))

        let originX = (newWidth - image.size.width) / 2
        let originY = (size.height - image.size.height) / 2
        image.draw(in: CGRect(x: originX, y: originY, width: image.size.width, height: image.size.height))
        let patternImage = UIGraphicsGetImageFromCurrentImageContext()!

        UIGraphicsEndImageContext()

        backgroundColor = UIColor(patternImage: patternImage)
    }
}

您可以查看我的项目:CustomSwipeCell了解更多详细信息。

于 2017-05-26T11:10:49.953 回答