Skip to content

Instantly share code, notes, and snippets.

@ariok
Created December 2, 2013 16:32
Show Gist options
  • Save ariok/7752231 to your computer and use it in GitHub Desktop.
Save ariok/7752231 to your computer and use it in GitHub Desktop.
Loading the main view from a xib file
- (UIView *)loadWithNib {
NSArray *aNib = [[NSBundle mainBundle]loadNibNamed:NSStringFromClass([self class]) owner:self options:nil];
UIView *view = [aNib objectAtIndex:0];
return view;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment