ios – 可以编辑滑动以删除(在UITableView中)默认文本或翻译它吗?

前端之家收集整理的这篇文章主要介绍了ios – 可以编辑滑动以删除(在UITableView中)默认文本或翻译它吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以将滑动转换为在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

猜你在找的iOS相关文章