重庆迈尖科技有限公司
2018-08-14 3e67eb3d9b87c159ccd1be9c1c55a562341dfe8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//
//  SGNetObserver.h
//  SGNetObserverDemo
//
//  Created by apple on 16/9/19.
//  Copyright © 2016年 iOSSinger. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
/**
 *  网络状态变化的全局通知
 *  info-keys:
 *  @"status"  网络状态,SGNetworkStatus类型
 *  @"host"    host 地址
 */
extern NSString *SGReachabilityChangedNotification;
 
 
typedef NS_ENUM(NSUInteger, SGNetworkStatus) {
    SGNetworkStatusNone,
    SGNetworkStatus3G,
    SGNetworkStatus4G,
    SGNetworkStatusWifi,
    SGNetworkStatusUkonow
};
 
@protocol SGNetworkStatusDelegate <NSObject>
 
- (void)observer:(id)obsever host:(NSString *)host networkStatusDidChanged:(SGNetworkStatus)ststus;
 
@end
 
@interface SGNetObserver : NSObject
/**
 *  当前网络状态
 */
@property (nonatomic,assign) SGNetworkStatus networkStatus;
 
/**
 * delegate,如果设定,只走代理,不发全局通知.否则只发全局通知
 */
@property (nonatomic,weak) id <SGNetworkStatusDelegate> delegate;
 
/**
 *  是否支持IPv4,默认全部支持
 */
@property (nonatomic,assign) BOOL supportIPv4;
 
/**
 *  是否支持IPv6
 */
@property (nonatomic,assign) BOOL supportIPv6;
 
/**
 *  有很小概率ping失败(实际没有断网),设定多少次ping失败认为是断网,默认2次
 */
@property (nonatomic,assign) NSUInteger failureTimes;
 
/**
 *  ping 的频率,默认1s
 */
@property (nonatomic,assign) NSTimeInterval interval;
 
/**
 *  默认www.baidu.com
 */
+ (instancetype)defultObsever;
 
/**
 *  自定义地址
 */
+ (instancetype)observerWithHost:(NSString *)host;
 
/**
 *  开始监控
 */
- (void)startNotifier;
 
/**
 *  停止监控
 */
- (void)stopNotifier;
@end