iphone view controller class - how to
        Posted  
        
            by Brodie4598
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Brodie4598
        
        
        
        Published on 2010-06-07T00:46:53Z
        Indexed on 
            2010/06/07
            0:52 UTC
        
        
        Read the original article
        Hit count: 258
        
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];
© Stack Overflow or respective owner