RectDrawable.h 423 B

12345678910111213141516171819
  1. //
  2. // RectDrawable.h
  3. // AntsContract
  4. //
  5. // Created by Ray on 12/23/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "BasicDrawable.h"
  9. @interface RectDrawable : BasicDrawable
  10. @property (nonatomic,strong) UIColor * bgColor;
  11. -(instancetype) init:(CGRect) rect color:(NSString*) color;
  12. +(NSMutableDictionary *) createRectTemplate:(CGRect) rect color:(NSString*) color;
  13. @end