BogoYounthModePopView.h 636 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BogoYounthModePopView.h
  3. // AFNetworking
  4. //
  5. // Created by 宋晨光 on 2021/9/11.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "FDUIKitObjC.h"
  9. #import <YYKit/YYKit.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoYounthModePopView : FDPopView
  12. @property(nonatomic, strong) UIView *bgView;
  13. @property(nonatomic, strong) UIImageView *topImgView;
  14. @property(nonatomic, strong) UILabel *titleL;
  15. @property(nonatomic, strong) UILabel *contentL;
  16. @property(nonatomic, strong) UIButton *inYounthBtn;
  17. @property(nonatomic, strong) UIButton *confirmBtn;
  18. @property(nonatomic, copy) void (^clickInYounthBlock)(BOOL isComeIn);
  19. @end
  20. NS_ASSUME_NONNULL_END