YBLiveOrVideo.h 512 B

123456789101112131415161718192021222324
  1. //
  2. // YBLiveOrVideo.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2019/11/27.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YBLiveOrVideo : UIView
  11. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *closeBottom;
  12. @property (weak, nonatomic) IBOutlet UIView *bgView;
  13. @property (weak, nonatomic) IBOutlet UIButton *videoBtn;
  14. @property (weak, nonatomic) IBOutlet UIButton *liveBtn;
  15. +(instancetype)showLiveOrVideoSel;
  16. @end
  17. NS_ASSUME_NONNULL_END