在这种方法中,我可以启用或禁用某些行的编辑
overrIDe func tableVIEw(tableVIEw: UItableVIEw,canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool{ return true }
但是如何在启用移动的情况下禁用某些行的删除?
解决方法 返回.None for editingStyleForRowAtIndexPath:func tableVIEw(tableVIEw: UItableVIEw,editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UItableVIEwCellEditingStyle { return .None}
显示如何删除缩进的更完整答案在这里 – > Is there any way to hide “-” (Delete) button while editing UITableView
总结以上是内存溢出为你收集整理的ios – 如何启用移动但禁用UITableView中某些行的删除全部内容,希望文章能够帮你解决ios – 如何启用移动但禁用UITableView中某些行的删除所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)