gmoledina / GMGridView

A performant Grid-View for iOS (iPhone/iPad) that allows sorting of views with gestures (the user can move the items with his finger to sort them) and pinching/rotating/panning gestures allow the user to play with the view and toggle from the cellview to a fullsize display.
MIT License
2.3k stars 512 forks source link

Please add support for batch edit like UITableView's beginUpdates and endUpdates #79

Open jimmy623 opened 12 years ago

jimmy623 commented 12 years ago

When using UITableView to updates a few rows , you have some indexes and you can use beginUpdates and endUpdates.

When using GMGridView I found this is difficult,you can only insert/delete/move one cell a time.And the indexes are changed immediately.

For Example I want to delete cell at index 3,4,5,6.Now I can only remove index 3 for 4 times, and if the indexes get complex this will get more and more inconvinet.And the animation for these are also not supported

New feature

rhummelmose commented 12 years ago

+1

nomadplanet commented 12 years ago

+1

Ricardo1980 commented 12 years ago

I wonder the same question. I'd like to use this in combination with NSFetchedResultsController. Thanks.

g-mark commented 12 years ago

+1

nicklocking commented 12 years ago

+1,000,000

jeffbarg commented 12 years ago

+1

kinwahlai commented 11 years ago

+1

robertomg commented 11 years ago

+1

ghulammustafa commented 11 years ago

+1 beginUpdates endUpdates support would be awesome. Currently, if you're using NSFetchedResultsController with GMGridView, multiple managed object updates (specially inserts) cannot be handled properly.