I have table view controller in iphone application. Table view has two sections. First section has two rows and second section has one row. Second section has a custom table
You want to use the setContentOffset method of the table view. Determine the magnitude of the vertical scroll (in pixels), and then:
setContentOffset
CGFloat verticalScroll = ... your code here ... [self.tableView setContentOffset:CGPointMake(0, verticalScroll) animated:YES];