Skip to content

Instantly share code, notes, and snippets.

@spacedrabbit
Created December 11, 2014 22:28
Show Gist options
  • Save spacedrabbit/76d5324379841b3bafb5 to your computer and use it in GitHub Desktop.
Save spacedrabbit/76d5324379841b3bafb5 to your computer and use it in GitHub Desktop.
- (void)viewDidLoad {
[super viewDidLoad];
UINib * gitNib = [UINib nibWithNibName:@"gitHubLogin"
bundle:[NSBundle mainBundle]];
GitHubLogin * loginView = [[gitNib instantiateWithOwner:self options:nil] firstObject];
[self.view addSubview:loginView];
[loginView setFrame:self.view.frame];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment