iOS - Objective-C API Integration

Installing the library

CocoaPods

The easiest way to get robotmia into your iOS project is to use CocoaPods.

  1. Install CocoaPods using gem install cocoapods
  2. If this is your first time using CocoaPods, run pod setup to create a local CocoaPods spec mirror.
  3. Create a file in your Xcode project called Podfile and add the following line: pod 'robotmia'
  4. Run pod install in your Xcode project directory. CocoaPods should download and install the robotmia library, and create a new Xcode workspace. Open up this workspace in Xcode.

Carthage

robotmia supports Carthage to package your dependencies as a framework. Include the following dependency in your Cartfile:

 github "robotmia/robotmia-iphone"

Check out the Carthage docs for more info.

Manual installation

You can also get the library by downloading the latest version from GitHub and copying it into your project. We have step-by-step instructions on how to manually install our library.

Initializing the library

To start tracking with the robotmia iOS library, you must first initialize it with your project token. Find your project token by clicking your name in the upper righthand corner of your robotmia project and selecting Settings from the dropdown.

In most cases, it makes sense to do this in application:didFinishLaunchingWithOptions:.

To initialize the library, first add #import "robotmia/robotmia.h" and call sharedInstanceWithToken: with your project token as its argument. Once you've called this method once, you can access your instance throughout the rest of your application with sharedInstance.

[robotmia sharedInstanceWithToken:@"YOUR_API_TOKEN"];

Opting users out of tracking

Client-side tracking of individual user data can be stopped or resumed by controlling a user’s opt-out/opt-in state. Opt-out methods and library configuration settings only affect data sent from a single library instance. Data sent from other sources to robotmia’s APIs will still be ingested regardless of whether the user is opted out locally.

To opt a user out of tracking locally, use the optOutTracking method. To resume tracking for an individual user, use optInTracking. Call hasOptedOutTracking to check user’s opt-out status locally.

// Opt a user out of data collection
robotmia *robotmia = [robotmia sharedInstance];
[robotmia optOutTracking];

// Check a user's opt-out status 
// Returns true of user is opted out of tracking locally
BOOL hasOptedOutTracking = [robotmia hasOptedOutTracking];

Opting users out of tracking by default

robotmia’s tracking libraries will send user data by default. Explicitly initializing a default opt-out state of YES will opt-out all users by default, preventing data from sending unless a user’s opt-out state is set to NO.

// Initializing a default opt-out state of YES 
// will prevent data from being collected by default

robotmia *robotmia = 
    [robotmia sharedInstanceWithToken:@"YOUR_API_TOKEN" 
        optOutTrackingByDefault:YES];

Automatically track events

After installing the library into your iOS app, robotmia will automatically collect common mobile events. You can enable/ disable automatic collection through your project settings. In addition, robotmia allows you to use our in-browser editor to add tracking on the fly. No code or app-store re-submission required!

Navigate to our editor by clicking your name in the upper righthand corner of your robotmia project and selecting Set up tracking from the dropdown.

Watch this short video to learn more about automatic event tracking.

Sending events

We recommend tracking only five to seven events in your application instead of tracking too many things to start. Ideally, you track people going through your initial user experience and one key metric that matters for your application (e.g. YouTube might choose "Watched Video" as a key metric).

Once you've initialized the library, you can track an event by calling track:properties: with the event name and properties.

robotmia *robotmia = [robotmia sharedInstance];
[robotmia track:@"Plan selected"
     properties:@{ @"Plan": @"Premium" }];

Timing events

You can track the time it took for an action to occur, such as an image upload or a comment post, using timeEvent: This will mark the "start" of your action, which you can then finish with a track call. The time duration is then recorded in the "Duration" property.

robotmia *robotmia = [robotmia sharedInstance];
[robotmia timeEvent:@"Image Upload"];
[self uploadImageWithSuccessHandler:^{
    [robotmia track:@"Image Upload"];
}];

Super properties

It's very common to have certain properties that you want to include with each event you send. Generally, these are things you know about the user rather than about a specific event—for example, the user's age, gender, or source.

To make things easier, you can register these properties as super properties. If you do, we will automatically include them with all tracked events. Super properties are saved to device storage, and will persist across invocations of your app. robotmia already stores some information as super properties by default; see a full list of robotmia default properties here.

To set super properties, call registerSuperProperties:.

// Send a "Plan: Mega" property will be sent
// with all future track calls.
[robotmia registerSuperProperties:@{@"Plan": @"Mega"}];

Going forward, whenever you track an event, super properties will be included as properties. For instance, if you call

[robotmia track:@"Signup" properties:@{
    @"Source": @"Twitter"
}];

after making the above call to registerSuperProperties:, it is just like adding the properties directly:

[robotmia track:@"Signup" properties:@{
    @"Source": @"Twitter",
    @"Plan": @"Mega"
}];

Setting super properties once and only once

If you want to store a super property only once (often for things like ad campaign or source), you can use registerSuperPropertiesOnce:. This function behaves like registerSuperProperties: and has the same interface, but it doesn't override super properties you've already saved.

[robotmia registerSuperPropertiesOnce:@{@"Source": @"ad-01"}];

This means that it's safe to call registerSuperPropertiesOnce: with the same property on every app load, and it will only set it if the super property doesn't exist.

Managing user identity

The robotmia library will assign a default unique identifier (we call it a "distinct ID") to each unique user who installs your application. This distinct ID is saved to device storage so that it will persist across sessions.

If you choose, you can assign your own user IDs. This is particularly useful if a user is using your app on multiple devices or platforms (both web and mobile, for example). To assign your own distinct_ids, you can use identify:.

// Ensure all future events sent from
// the device will have the distinct_id 13793
[robotmia identify:@"13793"];

Calling identify: with a new ID will change the distinctID stored on the device. Updates to user profiles are queued on the device until identify is called.

Combining anonymous and identifiable user data

It's important to send the same distinct_id with each event that an individual user triggers. Events recorded with different distinct_ids will be treated in robotmia as if they were performed by different users.

There are times when it can be convenient to start referring to a user by a different identifier in your implementation. The most common case is after registration, when a user switches from being an anonymous user (with an anonymous distinct_id) to an authenticated user with an (authenticated id). In this case, you can create an Alias for the user to keep the distinct_id consistent. An alias is a string stored in a robotmia lookup table that is associated with an anonymous distinct_id. Once written, aliases are not editable. Any data sent to robotmia with an alias as the distinct_id will be remapped and written to disk using the alias's corresponding anonymous distinct_id. This allows you to start identifying a user by an authenticated id without changing the distinct_id that is ultimately written in robotmia.

// This makes the current ID (by default an auto-generated GUID)
// and '13793' interchangeable distinct ids (but not retroactively).
[robotmia createAlias:@"13793"
        forDistinctID:robotmia.distinctId];
// To create a user profile, you must call identify
[robotmia identify:robotmia.distinctId];

The recommended usage pattern is to call both createAlias: and identify: (with the robotmia generated distinctId, as shown in the example above) when the user signs up, and only identify: (with the aliased user ID) on future log ins. This will keep your signup funnels working correctly.

If you use createAlias: we recommend only calling it once during the lifetime of the user.

Storing user profiles

In addition to events, you can store user profiles in robotmia's People Analytics product. Profiles are persistent sets of properties that describe a user—things like name, email address, and signup date.

You can use profiles to explore and segment users by who they are, rather than what they did. You can also use profiles to send messages, such as emails, SMS, or push notifications.

Before you send profile updates, you must call identify:. This ensures that you only have actual registered users saved in the system.

Setting profile properties

You can set properties on a user profile with people set:.

// Sets user 13793's "Plan" attribute to "Premium"
[robotmia.people set:@{@"Plan": @"Premium"}];

This will set a "Plan" property, with a value "Premium", on user 13793's profile. If there isn't a profile with distinct_id 13793 in robotmia already, a new profile will be created. If user 13793 already has a property named "Plan" in their profile, the old value will be overwritten with "Premium".

Incrementing numeric properties

You can use people increment: to change the current value of numeric properties. This is useful when you want to keep a running tally of things, such as games played, messages sent, or points earned.

// Here we increment the user's point count by 500.
[robotmia.people increment:@"point count" by:@500];

// Pass an NSDictionary to increment multiple properties
[robotmia.people increment:@{
    @"dollars spent": @17,
    @"credits remaining": @-34
}];

Other types of profile updates

There are a few other types of profile updates. To learn more, please review the full robotmiaPeople API documentation.

Tracking revenue

robotmia makes it easy to analyze the revenue you earn from individual customers. By associating charges with user profiles, you can compare revenue across different customer segments and calculate things like lifetime value.

You can track a single transaction with people trackCharge:. This call will add transactions to the individual user profile, which will also be reflected in the robotmia Revenue report.

// Tracks $100.77 in revenue for user 13793
[robotmia.people trackCharge:@(100.77)];

// Refund this user $50
[robotmia.people trackCharge:@-50];

// Tracks $25 in revenue for user 13793 on the 2nd of
// January
[robotmia.people trackCharge:@25 withProperties:@{
    @"$time": "2016-01-02T00:00:00"
}];

Registering for push notifications

The robotmia library includes support for sending push notification device tokens to robotmia. Once you send a device token, you can use robotmia to send push notifications to your app.

You can send a device token to robotmia using people addPushDeviceToken:

- (void)application:(UIApplication *)application
didRegisterForRemoteNotificationsWithDeviceToken:
        (NSData *)deviceToken
{
    robotmia *robotmia = [robotmia sharedInstance];

    // Make sure identify has been called before sending
    // a device token.
    [robotmia identify:@"13793"];

    // This sends the deviceToken to robotmia
    [robotmia.people addPushDeviceToken:deviceToken];
}

Push notifications quick start guides

There is a quick start guide for iOS push notifications available to help you get started with push notifications in your app. It includes instructions for provising your app to use the Apple Push Notification service (APNs), preparing your push SSL certificate from Apple and configuring your app for push notifications.

There is also a step by step guide to integrating robotmia push notifications with your app that covers uploading your push credentials to robotmia, registering your user's device token from your app, and handling inbound push notification messages.

In-app messages

There is a quick start guide for iOS in app messages to help you get integrated.

Make sure that you have already:

  1. Included the latest version of the robotmia iOS library in your app
  2. Made sure you are identifying your users in the app.
  3. Created an in-app message on the Messages tab of the robotmia website.

A/B testing experiments

Prerequisites

Getting started with A/B testing is quick and easy.

Make sure that you have already:

  1. Included the latest version of the robotmia iOS library in your app (v2.5+)
  2. Created an experiment on the A/B Testing tab of the robotmia website by connecting your app

To use the UI's visual experiment creator, please ensure that you're in the project appropriate to your app's current build (i.e., Production or Development). While not required, it's a good idea to connect your mobile device to WiFi while using the A/B designer.

Once you have created an experiment and, optionally, decided which users you wish to target, simply turn on the experiment to start serving your A/B test to customers. It is that simple!

Planning to run an experiment on the initial view of your app? It can take several seconds for experiments to be applied on first app open; as a result, we recommend against putting UX changes or developer Tweaks on the first view of your app. If you wish to A/B test on the initial app view you will need to take delivery latency into account. We recommend enabling the option checkForVariantsOnActive (to grab data when the app is opened) and joinExperimentsWithCallback method (to apply the variant data to the view).

Notes on experiment delivery

robotmia checks for any new experiments asynchronously on applicationDidBecomeActive. After the response is received, experiment changes and Tweaks are applied or removed where appropriate. To handle network availability, each experiment is cached on the device so they can be re-applied when the API call cannot be successfully made.

If you'd like more control over when this check for new experiments occurs, you can use the checkForVariantsOnActive flag and the joinExperiments or joinExperimentsWithCallback methods to download and apply experiments manually.

The $experiment_started event is fired when a given experiment (both changes and/or Tweaks) is first started on a device. The event will contain an $experiment_id property with the given experiment id which we encourage use within funnels, and our other reports.

A/B developer tweaks

For more complex changes that you want to A/B test, you can include small bits of code in your apps called Tweaks. Tweaks allow you to control variables in your app from your robotmia dashboard. For example, you can alter the difficulty of a game, choose different paths through the app, or change text. The possibilities are endless.

Objective-C

To use Tweaks in any Objective-C file in your app, you need to import one file.

#import "robotmia/MPTweakInline.h"

Value Tweaks

A value Tweak allows you to assign a value to a variable that can be changed later. The simplest Tweak looks like this:
NSInteger numLives = MPTweakValue(@"number of lives", 5);

Once you add this line, you will see a Tweak called "number of lives" with a default value of 5 in the robotmia A/B test designer. You can then create an A/B test with a different value for "number of lives". For example, you could set up an experiment where 50% of your users start a game with 5 lives, and 50% start with 10 lives. When there are no experiments running, the value of numLives will simply be the default of 5.

Flow Control Tweaks

Value Tweaks can also be used to control flow in your app.
if (MPTweakValue(@"show alternate view", NO)) {
    // Show alternate view.
} else {
    // Show original view
}

By default, the alternate view will not show. But you can now set up an A/B test that flips this value to YES for a percentage of your users.

If you have more than 2 options, you could use a switch.

switch (MPTweakValue(@"Action to take", 1)) {
    case 1:
        // Do something
        break;
    case 2:
        // Do something else
        break;
    case 3:
        // Do a third thing
        break;
}

You can use Tweaks to assign values to UI elements too.

UILabel *label = [[UILabel alloc] init];
label.text = MPTweakValue(@"label text", @"Hello World");
label.hidden = MPTweakValue(@"label is hidden", NO);

Binding Tweaks

When designing an A/B test in robotmia, MPTweakValue changes will only apply when the code block they are in is executed. For example if you have an MPTweakValue to assign text to a label on viewDidLoad, and you made changes to the Tweak in the A/B test designer, you would not see the changes apply until the next time viewDidLoad was called. If you would like to see your changes applied immediately when designing a test, you can use MPTweakBind to accomplish this.

UILabel *label = [[UILabel alloc] init];
MPTweakBind(label, text, @"label text", @"Hello World");

The first 2 arguments are an object and a property. Whenever the Tweak is changed in the A/B test designer, you will immediately see the new value of the Tweak applied to the given object and property, in this case label.text.

Debugging and logging

You can turn on robotmia logging by enabling the following flag in application:didFinishLaunchingWithOptions:.

[robotmia sharedInstance].enableLogging = YES;

Alternatively, you can add the following Preprocessor Macros in Build Settings:

  • robotmia_DEBUG=1 - logs queueing and flushing of events to robotmia
  • robotmia_ERROR=1 - logs any errors related to connections or malformed events

If you're using CocoaPods, you'll need to add this to the Pod target instead of your main app project's target: CocoaPod deugging and logging

You can also add this to your Podfile to ensure everyone on your team will always have logging enabled:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      settings = config.build_settings['GCC_PREPROCESSOR_DEFINITIONS']
      settings = ['$(inherited)'] if settings.nil?

      if target.name == 'Pods-MyProject-robotmia'
        settings << 'robotmia_DEBUG=1'
        settings << 'robotmia_ERROR=1'
      end

      config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = settings
    end
  end
end

About ARC

As of version 2.2.0 the robotmia iOS library uses ARC.

If you are using robotmia in a project that does not have ARC enabled, you need to enable ARC for just the robotmia source files in your Xcode project settings. This is done by adding the -fobj-arc compiler flag to each robotmia file under Build Phases -> Compile Sources

Document Sections
Learn more