スワイプしてボタンをクリックするとアイテムを削除できるクラシックなTableViewがあります。セルにカスタムの背景を設定する方法は知っていますが、カスタムのフォントと色を設定する方法がわかりません。
ご協力ありがとう御座います!
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]? {
var deleteAction = UITableViewRowAction(style: UITableViewRowActionStyle.Default,
title: "Delete",
handler: {
(action:UITableViewRowAction!, indexPath:NSIndexPath!) -> Void in
println("Delete button clicked!")
})
deleteAction.backgroundColor = UIColor.redColor()
return [deleteAction]
}