You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
388 B
28 lines
388 B
1 year ago
|
//
|
||
|
// VideoTabPopView.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by ecell on 2023/5/5.
|
||
|
// Copyright © 2023 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "Device.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface VideoTabPopView : UIView
|
||
|
|
||
|
+ (instancetype)sharedManager;
|
||
|
|
||
|
|
||
|
@property (nonatomic ,strong) Device *deviceModel;
|
||
|
|
||
|
- (void)showView;
|
||
|
|
||
|
- (void)monitorDevice;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|