playerSetView~.h 537 B

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