Top "Reloaddata" questions

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

How to filter UICollectionView and keep keyboard up?

I've added a UISearchBar to a UICollectionView and in the delegate searchBar:textDidChange: filter my model and call [collectionView reloadData]. …

ios keyboard uicollectionview uisearchbar reloaddata
Reloading tableview data from custom cell

I have a tableView with custom cell. I also have a .swift-file for this custrom cell. In this file I …

swift tableview custom-cell reloaddata
iOS - another thread needs to send reloadData to the mainthread

I got a separate thread that creates a UIView object, inserts it into the UITableView's data source and then call …

ios multithreading uitableview uiview reloaddata
self.tableView reloadData not working in viewWillAppear

I have an Xcode app that creates a tableview and then populates this with data from an sqlite database, this …

xcode uitableview reloaddata viewwillappear
iOS UITableView reloadData only refreshes table the second time I call my reload function

Here is my reload function - (void) reloadTable:(id)sender { NSLog(@"Reload Table"); NSLog(@"%@",[appDelegate queryList]); [self.driverTable reloadData]; [self.…

ios cocoa-touch uitableview reloaddata