をUITableViewCellのを使用する私はあなたが計算を支援する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詳細を見ることができます。
画像の代わりにemojisを使用しても問題ない場合は、これを確認してください - > http://stackoverflow.com/a/32735211/767329 –
返信ありがとうございますが、私のアプリではemojisを使いたくありません。ボタンの機能を表す特別なイメージを持っていたいと思っています(これがテキストの代わりにemojisを使いたくない理由です)。 –
問題は解決していますか? @ Vah.Sah –