Skip to content

Instantly share code, notes, and snippets.

@Grubas7
Grubas7 / gist:a2f9e04b38db1a6f4cd24c561fe30b02
Last active November 18, 2016 12:15
Class initializer vs. instance initializer
#pragma mark - class
#import <UIKit/UIKit.h>
@interface AGLabel : UILabel
+ (instancetype)magicLabel;
- (instancetype)initWithMagic;
@end