HXPhotoEditStickerItemContentView.h 501 B

12345678910111213141516171819
  1. //
  2. // HXPhotoEditStickerItemContentView.h
  3. // photoEditDemo
  4. //
  5. // Created by Silence on 2020/6/23.
  6. // Copyright © 2020 Silence. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class HXPhotoEditStickerItem;
  11. @interface HXPhotoEditStickerItemContentView : UIView
  12. @property (strong, nonatomic, readonly) HXPhotoEditStickerItem *item;
  13. - (instancetype)initWithItem:(HXPhotoEditStickerItem *)item;
  14. - (void)updateItem:(HXPhotoEditStickerItem *)item;
  15. @end
  16. NS_ASSUME_NONNULL_END