Skip to content

Instantly share code, notes, and snippets.

@maximbilan
Created January 6, 2016 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maximbilan/3f2b06ab56f24bcb0c98 to your computer and use it in GitHub Desktop.
Save maximbilan/3f2b06ab56f24bcb0c98 to your computer and use it in GitHub Desktop.
- (void)loadView
{
[super loadView];
...
NSString *nibName = someCondition ? @"OneXIB" : @"AnotherXIB";
UINib *nib = [UINib nibWithNibName:nibName bundle:nil];
[nib instantiateWithOwner:self options:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment