Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an iOS app with latest SDK and XCode 4.2.

I want to use a custom XIB in a custom UIView.

My custom UIView:

@interface CoordinateView : UIView {
    /**
     */
    ARGeoCoordinate *geoCoordinate;
    /**
     */
    IBOutlet UILabel* title;
    /**
     */
    IBOutlet UILabel* subTitle;
    /**
     */
    IBOutlet UIImageView* image;
}

Implementation:

@implementation CoordinateView

@synthesize geoCoordinate;

- (id)initWithFrame:(CGRect)frame 
{
    self = [super initWithFrame:frame];
    if (self) 
    {
        // Initialization code.
        //
        NSArray* topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CoordinateView" owner:nil options:nil];
        for(id currentObject in topLevelObjects)
        {
            if ([currentObject isKindOfClass:[CoordinateView class]])
            {
                [self addSubview:currentObject];
                break;
            }
        }
    }
    return self;
}

- (id)initForCoordinate:(ARGeoCoordinate *)coordinate
{
    self.geoCoordinate = coordinate;
    CGRect theFrame = CGRectMake(0, 0, BOX_WIDTH, BOX_HEIGHT);

    self = [self initWithFrame:theFrame];
    if (self)
    {
        title.text = geoCoordinate.title;
        image.image = [UIImage imageNamed:[NSString stringWithFormat:@"03%d.jpg", geoCoordinate.id]];
    }
    return self;
}

To initialize CoordinateView I use initWithCoordinate method.

Debugging I've found that title is nil here inside initWithCoordinate:

title.text = geoCoordinate.title;

I've used Interface Builder to 'link' IBOutlets.

What I'm doing wrong?

share|improve this question

2 Answers

In your initWithFrame: method, you should assign self to currentObject instead of adding it as a subview.

Also there's no need to override initWithFrame: and calling the super method since the layout of your view is determined by your xib file.

share|improve this answer

When the view is totally loaded, the viewDidLoad method is called. So, you should initialize the elements within the view there:

- (void)viewDidLoad {
    title.text = self.geoCoordinate.title;
}

More info in the docs.

share|improve this answer
2  
viewDidLoad is a UIViewController method, and I'm not using UIViewControllers. – VansFannel Feb 6 '12 at 18:50
How did you load your xib file without UIViewController? – Rollin_s Feb 6 '12 at 20:05
@Rollin_s Look at my question, the code is there. – VansFannel Feb 6 '12 at 20:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.