Skip to content

Instantly share code, notes, and snippets.

@zats
Last active October 5, 2015 02:35
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 zats/b1a641ef6a24163cab8a to your computer and use it in GitHub Desktop.
Save zats/b1a641ef6a24163cab8a to your computer and use it in GitHub Desktop.
UIViewController implementation details for view and loadViewIfNeeded
- (UIView *)view {
[self loadViewIfRequired];
return _existingView;
}
- (void)loadViewIfNeeded {
[self loadViewIfRequired];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment