就像是,
func tableVIEw(tableVIEw: UItableVIEw,commitEditingStyle editingStyle: UItableVIEwCellEditingStyle,forRowAtIndexPath indexPath: NSIndexPath){ // below code will delete one row - you can mange another kind of deletion here like delete from database also if editingStyle == .Delete { yourDataArray.removeAtIndex(indexPath.row) self.yourtableVIEw.reloadData() }}
你可以按下按钮,
self.yourtableVIEw.setEditing(true,animated: true)
在每个细胞上显示( – )标志!
总结以上是内存溢出为你收集整理的ios – 如何自动滑动/滑动单元格tableviewcell swift 3全部内容,希望文章能够帮你解决ios – 如何自动滑动/滑动单元格tableviewcell swift 3所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)