RAReachability.h 386 B

123456789101112131415161718192021
  1. //
  2. // RAReachability.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/10/23.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RAReachability : NSObject
  11. + (instancetype)defaultReachability;
  12. - (void)startNotifier:(void(^)(BOOL reachable))reachableBlk;
  13. - (void)stopNotifier;
  14. @end
  15. NS_ASSUME_NONNULL_END