| 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;
- -(instancetype) init:(CGRect) rect color:(NSString*) color;
- +(NSMutableDictionary *) createRectTemplate:(CGRect) rect color:(NSString*) color;
- @end
|