HVDNetworkInspector
An iOS library which measures the time taken for network connections to finish
Install / Use
/learn @WickedLynx/HVDNetworkInspectorREADME
HVDNetworkInspector
What it does?
HVDNetworkInspector keeps track of all network connections in your app and allows you to visualise them.

How to use?
Setup
Download the source code from here. Then:
- Drag HVDNetworkInspector.xcodeproj into your project
- Add HVDNetworkInspector as a dependancy of your target
- Link your target with libHVDNetworkInspector.a
- Add flag
-ObjCin Linking --> Other Linker Flags of your target

Usage
- Import the header:
#import <HVDNetworkInspector/HVDNetworkInspector.h>
- Before you start creating network requests, call:
[HVDNetworkInspector loadInspector];
You should only call this once in your app, typically in `application:didFinishLaunchingWithOptions:`.
- To show the connection summary, call:
[HVDNetworkInspector showReport];
