Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reload Table view cell with animation (Swift)

Is there a way to reload specific UITableView cells with multiple sections with animations?

I've been using:

self.TheTableView.reloadSections(NSIndexSet(index: 1), withRowAnimation: UITableViewRowAnimation.Right)

This animates all the cells in the section though. The other option is to use:

self.TheTableView.reloadRowsAtIndexPaths(<#indexPaths: [AnyObject]#>, 
                                         withRowAnimation: <#UITableViewRowAnimation#>)

EDIT:

After using reloadRowsAtIndexPaths

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 1. The number of rows contained in an existing section after the update (5) must be equal to the number of rows contained in that section before the update (4), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

Trying to find a smooth way of reloading a tableview by appending objects into an array.

Calling TheTableView.reloadData() before reloadRowsAtIndexPaths works, but the animation is glitchy. Is there another approach?

like image 322
William Larson Avatar asked Apr 14 '15 16:04

William Larson


4 Answers

Why not just reload the cells directly? The indexPath contains the section and row so just keep track of which section you want to reload and fill the indexes in that array.

var indexPath1 = NSIndexPath(forRow: 1, inSection: 1)
var indexPath2 = NSIndexPath(forRow: 1, inSection: 2)
self.tableView.reloadRowsAtIndexPaths([indexPath1, indexPath2], withRowAnimation: UITableViewRowAnimation.Automatic)

Based on your comment you are looking to change your array and have the tableView animate in the changes. If that's the case you should consider using beginUpdates() and endUpdates() for UITableViews or even an NSFetchedResultsController so it handles all of the update animations cleanly.

self.tableView.beginUpdates()
// Insert or delete rows
self.tableView.endUpdates()

I'd recommend using NSFetchedResultsController if you're using Core Data as it simplifies this entire process. Otherwise you have to handle the changes yourself. In other words, if your array changes you need to manually remove or insert rows in the tableview using beginUpdates() and endUpdates(). If you aren't using Core Data, study this to grasp how it's all handled.

like image 119
Mark McCorkle Avatar answered Nov 05 '22 10:11

Mark McCorkle


In Swift 3.0

We can reload particular row of particular section in tableview

let indexPath = IndexPath(item: 2, section: 0)
self.tableView.reloadRows(at: [indexPath], with: .automatic)
like image 38
jaiswal Rajan Avatar answered Nov 05 '22 12:11

jaiswal Rajan


If you want to reload single section in swift 3.0 you can do this:

tableView.reloadSections(IndexSet(integer: 0), with: .automatic)
like image 34
alessioarsuffi Avatar answered Nov 05 '22 10:11

alessioarsuffi


the define IndexSet in official document:

Manages a Set of integer values, which are commonly used as an index type in Cocoa API. The range of valid integer values is in (0, INT_MAX-1). Anything outside this range is an error.

so IndexSet is Set about index, just putting some Int values in [ ]

// for reload one section
tableView.reloadSections([section], with: .automatic)
// or using like this
tableView.reloadSections(IndexSet(integer: section), with: .automatic)

// for reload multi sections
tableView.reloadSections([1, 2, 3, section], with: .automatic)
like image 3
Junhang Lv Avatar answered Nov 05 '22 11:11

Junhang Lv