I am able to fetch list of data from a restful web service. The goal is to display the same in the form of rows in iPhone application.
I could able to bring up the table with data while rendering the view. But I could not able to scroll down to see all the result.
Do I need to implement any method in the View Controller?
Also I am able to add detail disclosure button for each row. For touchdown action on the disclosure button, which method do i need to implement in View Controller?
Please suggest.
EDITED :
Here is the code snippet how am adding UI button in a row:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
}