Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yangqian111/PPSPing
iOS端的一个ping网络工具,修复之前不能并发ping的问题,加入了可以通过cocoapod集成
https://github.com/yangqian111/PPSPing
Last synced: about 2 months ago
JSON representation
iOS端的一个ping网络工具,修复之前不能并发ping的问题,加入了可以通过cocoapod集成
- Host: GitHub
- URL: https://github.com/yangqian111/PPSPing
- Owner: yangqian111
- License: mit
- Created: 2017-01-03T05:03:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-22T09:11:30.000Z (over 7 years ago)
- Last Synced: 2024-10-31T15:32:24.373Z (3 months ago)
- Language: Objective-C
- Homepage:
- Size: 279 KB
- Stars: 85
- Watchers: 4
- Forks: 23
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - PPSPing - iOS端的一个ping网络工具,修复之前不能并发ping的问题,加入了可以通过cocoapod集成。 (OOM-Leaks-Crash / Ping)
README
# PPSPing
new:最新修复了xcode9 check_compile_time导致编译失败的错误,在iOS11中,将宏定义改成了__Check_Compile_Time
iOS端的一个ping网络工具,修复了之前不能够并发Ping的bug和不能够在子线程中发起的bug
此次版本还加入了pod支持,可以通过pod集成
### 集成方式
##### 源码
直接将PPSPing下的源码拷贝到工程目录中,在使用的时候直接引入PPSPingServices文件即可
##### pod方式引入
```
pod 'PPSPing', '~> 0.3.0'```
### 回调说明
ping的结果与电脑端的ping方式相似,数据格式相同
### 使用方式
```objc
@interface PPSAppDelegate()
@property (nonatomic, strong) PPSPingServices *service;
@end
@implementation PPSAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.service = [PPSPingServices serviceWithAddress:@"www.163.com"];
[self.service startWithCallbackHandler:^(PPSPingSummary *pingItem, NSArray *pingItems) {
NSLog(@"%@",pingItem);
}];
return YES;
}@end
```**注意:在使用时,需要service存在强引用,不然不能够收到回调结果**
###### 错误使用方式
```objc
@interface PPSAppDelegate()
//@property (nonatomic, strong) PPSPingServices *service;
@end
@implementation PPSAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
PPSPingServices *service = [PPSPingServices serviceWithAddress:@"www.163.com"];
[service startWithCallbackHandler:^(PPSPingSummary *pingItem, NSArray *pingItems) {
NSLog(@"%@",pingItem);
}];
return YES;
}@end
```上面这种使用方式,将得不到回调结果,在block执行完成后,service已经销毁
看一下效果图:
![](http://o8bxt3lx0.bkt.clouddn.com/blog/2017-01-09-iOSping%E5%B0%8F%E5%B7%A5%E5%85%B7.gif)
后面如果还有时间,会接着完善