| 12345678910111213141516171819 |
- //
- // RectDrawable.h
- // AntsContract
- //
- // Created by Ray on 12/23/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import "BasicDrawable.h"
- @interface RectDrawable : BasicDrawable
- @property (nonatomic,strong) UIColor * bgColor;
- @property (assign, nonatomic) double alpha;
- -(instancetype) init:(CGRect) rect color:(NSString*) color;
- -(instancetype) init:(CGRect) rect color:(NSString*) color alpha:(double) alpha;
- //+(NSMutableDictionary *) createRectTemplate:(CGRect) rect color:(NSString*) color;
- @end
|