123456789101112131415161718192021222324 |
- //
- // playerSetView.h
- // 双子星云手机
- //
- // Created by xd h on 2024/6/24.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface playerSetView : UIView
- @property (nonatomic,copy) void (^didClickButtonFun)(NSInteger tag);
- - (void)setWebRctMsgBydelayed:(NSInteger)delayedMS withPacketLoss:(double)PacketLoss withSpeed:(NSString*)speedStr withFPS:(NSString*)fpsStr;
- - (void)setAllSwitchFun;
- #pragma mark 是否要显示设置分辨率(全面屏要隐藏)
- - (void)handleResolutionUIFun;
- @end
- NS_ASSUME_NONNULL_END
|