Files
featherVoice/TUIKit/TUIMultimediaPlugin/Edit/UI/CommonEditor/Views/TUIMultimediaMosaicDrawView.h
2025-08-08 10:49:36 +08:00

18 lines
467 B
Objective-C

// Copyright (c) 2025 Tencent. All rights reserved.
// Author: eddardliu
#import <UIKit/UIKit.h>
@interface TUIMultimediaMosaicDrawView : UIImageView
@property (nonatomic, strong) UIImage *originalImage;
@property(readonly, nonatomic) BOOL canUndo;
@property(readonly, nonatomic) BOOL canRedo;
@property(readonly, nonatomic) NSInteger pathCount;
- (void)clearMosaic;
- (void)undo;
- (void)redo;
- (void)addPathPoint:(CGPoint) point;
- (void)completeAddPoint;
@end