Declare your view controller as a UITableViewDelegate and set the table view's delegate to that controller. Then, table view delegate methods will help you.
For example:
- (UITableViewCell *)tableView

UITableView*)tableView cellForRowAtIndexPath

NSIndexPath *)indexPath
forms the cells. You should try looking at some examples for a better understanding.