是否可以将滑动转换为在iOS7中的UITableView中
删除消息?
我正在使用两个委托方法来显示系统滑动以删除UITableView特定行中的按钮
是的,实现UITableViewDelegate的
功能:
func tableView(tableView: UITableView,titleForDeleteConfirmationButtonForRowAtIndexPath indexPath: NSIndexPath) -> String! {
return "your string" //or customize for each indexPath
}
原文链接:https://www.f2er.com/iOS/330401.html