RoomPopView.h 504 B

123456789101112131415161718192021222324252627
  1. //
  2. // RoomPopView.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/3.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RoomPopView : UIView
  11. - (void)show:(UIView *)superView;
  12. - (void)hide;
  13. @property (nonatomic, copy) NSString *vagueImgUrl; // 模糊背景图片url
  14. @property (nonatomic, strong) UIImageView *vagueImgView; // 模糊背景图片
  15. - (void)vagueBackGround;
  16. @end
  17. NS_ASSUME_NONNULL_END