Can anyone list delegate methods and data source methods for UITableView?
Are delegates and data sources methods are same for UITableView?<
Go to the link, it will describe about all the basics of UITableView.
Primary Methods of UITableView are:
– tableView:cellForRowAtIndexPath: // required method
– tableView:numberOfRowsInSection: // required method
– numberOfSectionsInTableView:
– sectionIndexTitlesForTableView:
– tableView:sectionForSectionIndexTitle:atIndex:
– tableView:titleForHeaderInSection:
– tableView:titleForFooterInSection:
The required one are those whom you must have to include in the code. Don't forget to link the Table delegate and datasource with File Owner.