BogoSharePopView.h 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // BogoSharePopView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/10/22.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BogoPosterImgView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoSharePopView : UIView
  12. @property (nonatomic, strong) BogoPosterImgView *topSmView;
  13. @property (nonatomic, strong) UIView *container;
  14. @property (nonatomic, strong) UIView *posterContainerView;
  15. @property (nonatomic, strong) UIButton *cancel;
  16. @property(nonatomic, strong) NSString *shareContent;
  17. - (void)show;
  18. - (void)dismiss;
  19. @end
  20. @interface ShareItem:UIView
  21. @property (nonatomic, strong) UIImageView *icon;
  22. @property (nonatomic, strong) UILabel *label;
  23. -(void)startAnimation:(NSTimeInterval)delayTime;
  24. @end
  25. NS_ASSUME_NONNULL_END