iphone view controller class - how to
- by Brodie4598
Hello -
I need to create my own UIView class and it is not something I have had to do. I created the class, then laid out the small view in IB (it's just a few labels that i will later need to add data to ). but now im stuck on how to actually put an instance of it in my main view. Can someone point me in the direction of a good tutorial? The closest thing I have done to this is creating a custom tableViewCell.
DataTagViewController *dataTag = [[DataTagViewController alloc]init];
[theMap addSubView: dataTag];