Skip to content

Instantly share code, notes, and snippets.

@DonMag
Created April 27, 2016 18:21
Show Gist options
  • Select an option

  • Save DonMag/88a88714ecc26d7fd4d20311f9fffd43 to your computer and use it in GitHub Desktop.

Select an option

Save DonMag/88a88714ecc26d7fd4d20311f9fffd43 to your computer and use it in GitHub Desktop.
#import <UIKit/UIKit.h>
@interface DMView : UIView
@property (strong, nonatomic) UIColor *bkgColor;
- (id)initWithFrame:(CGRect)frame color:(UIColor *)color;
@end
#import "DMView.h"
@implementation DMView
- (id)initWithFrame:(CGRect)frame color:(UIColor *)color {
self = [super initWithFrame:frame];
if (self) {
// Initialization code
self.backgroundColor = color;
}
return self;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment