Skip to content

Instantly share code, notes, and snippets.

@TomoyaOnishi
Created March 20, 2015 07:07
Show Gist options
  • Save TomoyaOnishi/42d398f99a0dee043a5b to your computer and use it in GitHub Desktop.
Save TomoyaOnishi/42d398f99a0dee043a5b to your computer and use it in GitHub Desktop.
@interface CustomView: UIView
- (instancetype)init;
@end
@implementation
- (instancetype)init
{
UINib *nib = [UINib nibWithNibName:@"CustomView" bundle:nil];
self = [nib instantiateWithOwner:self options:nil][0];
return self;
}
@end
// CustomView *view = [[CustomView alloc] init];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment