Can anyone list delegate methods and data source methods for UITableView?
Are delegates and data sources methods are same for UITableView?<
List them?? No they are not same.. Look at documentation.. http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDelegate_Protocol/Reference/Reference.html
http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDataSource_Protocol/Reference/Reference.html
Datasource methods are used to generate tableView cells,header and footer before they are displaying..Delegate methods provide information about these cells, header and footer along with other user action handlers like cell selection and edit..