Skip to content

Instantly share code, notes, and snippets.

@ahmedk92
ahmedk92 / commonInit.m
Last active May 22, 2019 12:52 — forked from aaronshekey/commonInit.m
Common initialization methods for a custom view in Objective C
- (void)commonInit {
// Do stuff.
}
- (instancetype)init {
if (self = [super init]) {
[self commonInit];
}
return self;