1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // WHUtilsManager.h
- // WHChatV
- //
- // Created by 刘必果 on 2023/4/19.
- //
- #import <Foundation/Foundation.h>
- #import <CoreLocation/CoreLocation.h>
- #import <AVFoundation/AVFoundation.h>
- #import <UIKit/UIKit.h>
- //网络
- #import <CoreTelephony/CTCellularData.h>
- #import "AFNetworking.h"
- NS_ASSUME_NONNULL_BEGIN
- @class KeyChina;
- @interface WHUtilsManager : NSObject
- + (void)checkNetworkStatus:(void (^)(BOOL isAlways, AFNetworkReachabilityStatus status))response; /* 检查网络状态 */
- /**
- 实时检查当前网络状态
- */
- + (void)addReachabilityManagerDidFinishLaunching:(void (^)(BOOL isAlways, AFNetworkReachabilityStatus status))response;
- @end
- NS_ASSUME_NONNULL_END
|