InterviewSolution
Saved Bookmarks
| 1. |
What will be output for below code? |
|
Answer» Fetch your API with new page number until the last page. FUNC tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { if indexPath.row == list.count - 1 { self.fetchMoreItems(currentPageNumber) } }
|
|