Skip to content

Instantly share code, notes, and snippets.

@bryanluby
Created February 22, 2014 16:54
Show Gist options
  • Save bryanluby/9157978 to your computer and use it in GitHub Desktop.
Save bryanluby/9157978 to your computer and use it in GitHub Desktop.
CALayer helper category for nib access through user defined runtime attributes.
@implementation CALayer (NibAccess)
- (void)setLub_borderColor:(UIColor *)color
{
self.borderColor = color.CGColor;
}
- (UIColor *)lub_borderColor
{
return [UIColor colorWithCGColor:self.borderColor];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment