1234567891011121314151617181920212223242526 |
- //
- // HXPhotoEditGridMaskLayer.h
- // photoEditDemo
- //
- // Created by Silence on 2020/6/29.
- // Copyright © 2020 Silence. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HXPhotoEditGridMaskLayer : CAShapeLayer
- /** 遮罩颜色 */
- @property (nonatomic, assign) CGColorRef maskColor;
- @property (nonatomic, assign) BOOL isRound;
- /** 遮罩范围 */
- @property (nonatomic, assign, setter=setMaskRect:) CGRect maskRect;
- - (void)setMaskRect:(CGRect)maskRect animated:(BOOL)animated;
- /** 取消遮罩 */
- - (void)clearMask;
- - (void)clearMaskWithAnimated:(BOOL)animated;
- @end
- NS_ASSUME_NONNULL_END
|