how is it possible to reload data for a cell in my table view? I want to do a request to my Server and the server responses JSON. At the moment I implemented the request and the response handling and I can show the data in my cells. But I want that the server only responses maybe ten datasets. When I scroll to the end of the table view with my ten cells in the app I want to do the next request to my server and the server delivers the next ten datasets and so on. I work with Swift as the programming language.
THX!
Try this...
Swift 2.0
Swift 3.0
You can use
self.tableView.reloadData()
in order to reload your entire table orself.tableView.reloadRowsAtIndexPaths(paths, withRowAnimation: UITableViewRowAnimation.None)
in order to reload a specific cell.You can read more about the UITableView class here
To reload visible cells of tableview in Swift 3.0
you can get Array of visible Cell by using
TableView
FunctiontableView.visibleRows()
or You Can GetIndexPath
of Visible Rows BytableView.indexPathsForVisibleRows()
! and then you can reload table bytableView.reloadData()
Function!look at following links
link1
you can read about
UITableView
Class Here