Questions tagged [reloaddata]

This tag covers reloadData methods on UITableView, UICollectionView and NSTableView in Apple's UIKit and AppKit frameworks. Do not use it outside the context of Apple frameworks.

Initially this was supposed to cover reloadData on UITableView on Objective-C, but by now it has also been used for all kinds of issues regarding reloading data.

Don't do this, let's leave this to UITableView.

678 questions
-2
votes
4 answers

Reload data in tableView after method call

I have method which gets data from server to use in table problem is that when data is fetched if there are 3 items already in array and then becomes 5 after method call and we reload data then it makes duplicate of records [self saveData]; [self…
Ali Imran
  • 23
  • 1
  • 6
-3
votes
1 answer

How do I reload data in my TableView

I've seen some answers on Stack about this question but a lot of them are from 5 years ago and using an older version of Swift. I would like to reload the data in the table every time the user hits save so that the appended event will now be added…
-5
votes
2 answers

Why am I not able to run reloadData?

This is in UIViewController. I want to run reloadData on my table view, but it does not work. First, I call fromGenre: from another view. I start an NSURLConnection. Then it calls connectionDidFinishLoading:. Then doParse:. After that, in this…
1 2 3
45
46