Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Your question needs some flushing out. Are you saying you want to create a UITableView like structure without using UITableView?

Every UI element is accessible via code. Interface Builder isn't actually required for any of it. Look up the class in the documentation, then search online for further hints if you need them.

Here is a quicky sample hack. I'm sure some details are missing but it should lead you in the right direction.
Code:
CGRect someFrame = CGRectMake(0.0,0.0,100.0,100.0); // Often the frame takes up most of the window on an iPhone, so set appropriately.
UITableView * mytv = [[UITableView alloc] initWithFrame: someFrame style: UITableViewStylePlain];
mytv.dataSource = self; // or some other existing object.
mytv.delegate = self; // or some other existing object.
[someview addSubview: mytv]; // someview may likely be the view of your view controller.
// [mytv release]; // <-- if you are using manual memory memory management instead of ARC.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.