Created
April 27, 2016 18:21
-
-
Save DonMag/88a88714ecc26d7fd4d20311f9fffd43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <UIKit/UIKit.h> | |
| @interface DMView : UIView | |
| @property (strong, nonatomic) UIColor *bkgColor; | |
| - (id)initWithFrame:(CGRect)frame color:(UIColor *)color; | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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