Top "Reloaddata" questions

This tag covers reloadData methods on UITableView, UICollectionView and NSTableView in Apple's UIKit and AppKit frameworks.

How to tell when UITableView has completed ReloadData?

I am trying to scroll to the bottom of a UITableView after it is done performing [self.tableView reloadData] I …

objective-c uitableview reloaddata
UITableview reloaddata with animation

I have a UITableView which is populated from array and a drop down list. If I select any row of …

ios uitableview reloaddata
How to keep UITableView contentoffset after calling -reloadData

CGPoint offset = [_table contentOffset]; [_table reloadData]; [_table setContentOffset:offset animated:NO]; //unuseful // __block UITableView *tableBlock = _table; // [self performBlock:^(id sender) { // […

ios uitableview reloaddata contentoffset
Reload section method in swift 3?

I have code written in objective c.I want to convert this code into the swift3 code. [_expandableTableView reloadSections:[NSIndexSet …

ios arrays swift uitableview reloaddata
TableView reloadData vs. beginUpdates & endUpdates

I got a tricky problem regarding updating my TableView, i get different results using different methods of updating it, let …

ios objective-c reloaddata
Refreshing a UICollectionview

Does anyone know how to reload/refresh a UICollectionView while the collection view is being displayed? Basically I'm looking for …

ios objective-c uicollectionview reloaddata
Swift UITableView reloadData in a closure

I believe I'm having an issue where my closure is happening on a background thread and my UITableView isn't updating …

ios swift uitableview reloaddata
How to reload tableview using view controller (swift)

i'm quite new to this. I've spent some hours to go through the various questions on this topic but couldn't …

ios swift uitableview reloaddata
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(…

ios swift row tableview reloaddata
Remembering scroll position on UITableView

I have a bit of a problem with my iOS app in xcode. I have a UITableView that loads a …

ios uitableview uiviewcontroller reloaddata viewdidappear