Skip to content

Instantly share code, notes, and snippets.

@Ashton-W
Ashton-W / View.m
Created November 6, 2014 05:09
IBInspectable default values in Objective-C for IB_DESIGNABLE Views
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (!self) {
return nil;
}
[self inspectableDefaults];