KKCutGridView.h 514 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // KKCutGridView.h
  3. // WWImageEdit
  4. //
  5. // Created by 邬维 on 2017/1/16.
  6. // Copyright © 2017年 kook. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /**
  10. 裁剪view
  11. */
  12. @interface KKCutGridView : UIView
  13. @property (nonatomic, assign) CGRect clippingRect; //裁剪范围
  14. - (id)initWithSuperview:(UIView*)superview frame:(CGRect)frame;
  15. /**
  16. 设置裁剪view的背景颜色
  17. */
  18. - (void)setBgColor:(UIColor*)bgColor;
  19. /**
  20. 设置裁剪的网格颜色
  21. */
  22. - (void)setGridColor:(UIColor*)gridColor;
  23. @end