John S
John S

Reputation: 1737

Create a UIView from NIB

I have created a custom class that subclasses UIView. I want to do my layout in IB, so have set outlets. The problem is how do I initialise my view so that I get it from the NIB? Any help would be greatly appreciated.

Upvotes: 27

Views: 12686

Answers (1)

kv0
kv0

Reputation: 914

Something like this:

UIView *info = [[[NSBundle mainBundle] loadNibNamed:@"InfoWeather" owner:self options:nil] objectAtIndex:0];

Upvotes: 56

Related Questions