Check out How to UITableView by JR. Here is an excerpt:
Drag out a UITableView and UITableViewCell
Implement the source and delegate interfaces
Connect the TableView outlet
Give it some data
Voila
Code
ViewController.h
#import <UIKit/UIKit.h>@interface ViewController : UIViewController <UITableViewDelegate,...
The full article is available here.