KKCutGridLayer.h 421 B

123456789101112131415161718
  1. //
  2. // KKCutGridLayer.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. 网格视图
  11. */
  12. @interface KKCutGridLayer : CALayer
  13. @property (nonatomic, assign) CGRect clippingRect; //裁剪范围
  14. @property (nonatomic, strong) UIColor *bgColor; //背景颜色
  15. @property (nonatomic, strong) UIColor *gridColor; //线条颜色
  16. @end