mirror of
https://github.com/leanote/leanote-ios.git
synced 2026-01-14 06:05:02 +08:00
12 lines
228 B
Objective-C
Executable File
12 lines
228 B
Objective-C
Executable File
#import <Foundation/Foundation.h>
|
|
|
|
@interface ReachabilityUtils : NSObject
|
|
|
|
+ (BOOL)isInternetReachable;
|
|
|
|
+ (void)showAlertNoInternetConnection;
|
|
|
|
+ (void)showAlertNoInternetConnectionWithRetryBlock:(void (^)())retryBlock;
|
|
|
|
@end
|