| 123456789101112131415161718192021222324 |
- //
- // YBLiveOrVideo.h
- // YBVideo
- //
- // Created by YB007 on 2019/11/27.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YBLiveOrVideo : UIView
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *closeBottom;
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UIButton *videoBtn;
- @property (weak, nonatomic) IBOutlet UIButton *liveBtn;
- +(instancetype)showLiveOrVideoSel;
- @end
- NS_ASSUME_NONNULL_END
|