iOS SDK v2.0.5 released on January 28 2016
See documentation at http://pyze.com/iOS.html for downloading the agent using cocoapods or from github.
What’s new?
- Documentation updates
- Added simplified initialization method
[Pyze initialize:@"Pyze App Key obtained from growth.pyze.com"];
- Added simplified Log Throttling method
- Support for Timed Events that are reentrant, thread and block safe, and can be used to time multiple instanced of same event
//started uploading file 1 double timerReference1 = [Pyze getTimerReference]; sleep(1); //started uploading file 2 double timerReference2 = [Pyze getTimerReference]; void (^block)(); block = ^void() { sleep(2); //second finished before first [PyzeCustomEvent postWithEventName:@“File Uploaded”
withTimerReference: timerReference2]; sleep(1); //first finished [PyzeCustomEvent postWithEventName:@“File Uploaded” withTimerReference: timerReference1]; }; block();