Fastream-iOS-SDK - an iOS Event Tracking Library
Installation
Integrating the Fastream-iOS library can be done in a few simple steps, using CocoaPods.
To install CocoaPods:
- Open a terminal and run
sudo gem install cocoapods
- Run
pod setup
To integrate the Fastream-iOS library in your project:
- Create a file called
Podfile
in the root directory of your project - Add the following line to your Podfile:
pod "fastream-ios-sdk"
- Close Xcode
- Open a terminal and run
pod install
in the root directory of your project. - Open the new Xcode workspace (
<your-project>.xcworkspace
)
Compatibility
The Fastream-iOS library is a modified version of the Mixpanel-iphone library, trimmed down to the bare event tracking necessities.
To integrate Fastream-iOS, you need to be using Xcode 5 and a Base SDK of iOS 7.0. The library will work with deployment targets of iOS 6.0 and above.
Initialization
To use the Fastream-iOS library, you must first initialize it with the hostname of your Fastream endpoint, and your token. Since this should be done only once, it makes sense to initialize Fastream-iOS when your app finishes launching:
#import <fastream_ios_sdk/Fastream.h>
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
/* ... */
NSString *token = @"YOUR-TOKEN";
NSString *url = @"YOUR-URL";
[Fastream sharedInstanceWithToken:token serverURL:url];
return YES;
}
Once initialized, you can use the Fastream-iOS library anywhere in your code just by calling the sharedInstance
method:
Fastream *Fastream = [Fastream sharedInstance];
Sending events
To send an event to Fastream, you can stick to the Mixpanel convention of track:properties:
, or you can use the more free-form trackCustomEvent:
to send a JSON serializable NSDictionary object.
The Mixpanel Way
As we mentioned, Fastream-iOS is forked from Mixpanel, therefore it supports all of the methods implemented by the Mixpanel library:
track:
track:properties:
timeEvent:
registerSuperProperties:
®isterSuperPropertiesOnce:
identify:
flush
&reset
Basic event tracking can be implemented with the following code:
Fastream *Fastream = [Fastream sharedInstance];
// Track an event just with a type
[Fastream track:@"Event-type1"];
// Track an event with a type & properties
[Fastream track:@"Event-type2" properties:@{
@"prop1": @"abc",
@"prop2": 123
}];
Using these methods will send events in the following format:
{
"event": "Event-type2",
"properties": {
"prop1": "abc",
"prop2": 123,
/*
additional properties added by the library:
distinct_id, $os, time, sending_time, $model
$manufacturer, $wifi, $screen_width,
$screen_height, ...
*/
}
}
Documentation of the rest of the Mixpanel provided functions can be found on the Mixpanel website.
The Custom Way
In case you haven't been using Mixpanel, and all you want to do is send custom JSON objects, you can use the following snippet:
Fastream *Fastream = [Fastream sharedInstance];
[Fastream trackCustomEvent:@{
@"custom-field1": @"event-type",
@"custom-field2": @"abc",
@"custom-field3": 123
}];
Using this method will send events in the following format:
{
"custom-field1": "event-type",
"custom-field2": "abc",
"custom-field3": 123,
"properties": {
/*
additional properties added by the library:
distinct_id, $os, time, sending_time, $model
$manufacturer, $wifi, $screen_width,
$screen_height, ...
*/
}
}
General Notes
-
Fastream-iOS adds additional properties to each event:
- time - the epoch time (seconds) when the event was tracked
- sending_time - the epoch time (seconds) when the event was actually sent (in case the device was offline)
- distinct_id - a unique identifier, identifying the device
- additional fields and their values can be seen in the function collectAutomaticProperties
-
The Fastream-iOS stores events in an internal queue of events, to be sent when the device is online. The queue has a fixed size of 500 events. If the device is offline and the queue fills up, the 501th event will cause the 1st (oldest) event to be popped from the queue and discarded.
Testing with our SampleApp
To run the example project, clone the repo, and run pod install
from the Example directory.
Open the SampleApp.xcworkspace
and run the app.
Author
Fastream dev@fastream.io
License
Fastream-iOS is available under the Apache v2 license. See the LICENSE file for more info.