123456789101112131415161718192021222324 |
- //
- // webRtcPingManager.h
- // 双子星云手机
- //
- // Created by xd h on 2024/12/24.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface webRtcPingManager : NSObject
- /** 实例化对象(单例) */
- + (instancetype)shareManager;
- /**自定义字段 是否为局域网*/
- @property (nonatomic,assign) bool isPingOk; //
- //开始
- - (void)startPingFun;
- @end
- NS_ASSUME_NONNULL_END
|