Using long press gesture to reorder cells in tableview?

前端 未结 6 558
灰色年华
灰色年华 2021-02-04 03:35

I want to be able to reorder tableview cells using a longPress gesture (not with the standard reorder controls). After the longPress is recognized I want the tableView to essent

6条回答
  •  爱一瞬间的悲伤
    2021-02-04 04:12

    You can't do it with the iOS SDK tools unless you want to throw together your own UITableView + Controller from scratch which requires a decent amount of work. You mentioned not relying on 3rd party solutions but my custom UITableView class can handle this nicely. Feel free to check it out:

    https://github.com/bvogelzang/BVReorderTableView

提交回复
热议问题