Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Narmer

macrumors newbie
Original poster
May 16, 2008
6
0
Hi,

I want to build a similar interface like stopwatch. I want to add a uitablecontroller to uiview, but I don't know how can I do this. Somebody can help me?

Thanks,
 

tacoman667

macrumors regular
Mar 27, 2008
143
0
Hi,

I want to build a similar interface like stopwatch. I want to add a uitablecontroller to uiview, but I don't know how can I do this. Somebody can help me?

Thanks,

Don't take this verbatim but here is the gist of it.

Code:
UIView *myView = [UIView alloc];
	
	UITableViewController *tableViewController = [[UITableViewController alloc] init];
	
	[myView addSubview:[tableViewController view]];
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.