2015-09-21 46 views
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 delete image

但是當我SWI PE離開,圖像只顯示一半: enter image description here

我一直在困惑這個很長一段時間,感謝您的幫助

回答

1

的tableViewRowAction的長度將標題的長度

讓deleteAciont = UITableViewRowAction(style:UITableViewRowActionStyle.Normal,title:「type more space here」,handler:{action,indexpath in do something thing });

相關問題