RKShowPaintedView.h 605 B

1234567891011121314151617181920212223242526
  1. //
  2. // RKShowPaintedView.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2020/8/27.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RKShowPaintedView : UIView
  10. @property(nonatomic,strong)NSString *giftPathStr; //手绘礼物地址
  11. @property(nonatomic,strong)NSArray *paintedPointArray; //手绘礼物图形路径
  12. @property(nonatomic,assign)CGFloat paintedWidth; //发送方手绘礼物区域宽度
  13. @property(nonatomic,assign)CGFloat paintedHeight; //发送方手绘礼物区域高度
  14. -(void)destroyPaitend;
  15. @end