0
我想定製我的UITableViewCell中的刪除按鈕像這樣的代碼:內UITabelViewCell自定義刪除圖像只顯示自身一半
let deleteAciont = UITableViewRowAction(style: UITableViewRowActionStyle.Normal, title: nil, handler: {action, indexpath in
do some thing
});
deleteAciont.backgroundColor = UIColor(patternImage: UIImage(named: "delete")!)
中的UITableViewCell的高度是70這樣的:
override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return 70
}
和圖像是這些尺寸:delete.png:70 * 70 \ [email protected]:140 * 140 \ [email protected]:210 * 210
我一直在困惑這個很長一段時間,感謝您的幫助