BogoPosterImgView.h 617 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // BogoPosterImgView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/10/23.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ShareModel.h"
  10. #import "userPageModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface BogoPosterImgView : UIView
  13. @property (nonatomic, strong)UIImageView *backImageView;
  14. @property(nonatomic, strong) ShareModel *model;
  15. ///
  16. @property (nonatomic, strong) NSString *url;
  17. ///
  18. @property (nonatomic, assign) BOOL is_Small;
  19. ///
  20. @property (nonatomic, strong) UIImage *imageStr;
  21. @property(nonatomic, strong) userPageModel *userModel;
  22. @end
  23. NS_ASSUME_NONNULL_END