| 123456789101112131415161718192021 |
- //
- // RAReachability.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/23.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RAReachability : NSObject
- + (instancetype)defaultReachability;
- - (void)startNotifier:(void(^)(BOOL reachable))reachableBlk;
- - (void)stopNotifier;
- @end
- NS_ASSUME_NONNULL_END
|