Files
leanote-ios/Leanote/util/ReachabilityUtils.h
2015-08-21 23:49:41 +08:00

12 lines
228 B
Objective-C
Executable File

#import <Foundation/Foundation.h>
@interface ReachabilityUtils : NSObject
+ (BOOL)isInternetReachable;
+ (void)showAlertNoInternetConnection;
+ (void)showAlertNoInternetConnectionWithRetryBlock:(void (^)())retryBlock;
@end