|
LuxChat
2.0
Instant messenger for iOS
|
#import <PFAnalytics.h>
Class Methods | |
| (BFTask< NSNumber * > *) | + trackAppOpenedWithLaunchOptions: |
More... | |
| (void) | + trackAppOpenedWithLaunchOptionsInBackground:block: |
| (BFTask< NSNumber * > *) | + trackAppOpenedWithRemoteNotificationPayload: |
| (void) | + trackAppOpenedWithRemoteNotificationPayloadInBackground:block: |
| (BFTask< NSNumber * > *) | + trackEvent: |
More... | |
| (void) | + trackEventInBackground:block: |
| (BFTask< NSNumber * > *) | + trackEvent:dimensions: |
| (void) | + trackEventInBackground:dimensions:block: |
Copyright (c) 2015-present, Parse, LLC. All rights reserved.
This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. PFAnalytics provides an interface to Parse's logging and analytics backend.
Methods will return immediately and cache the request (+ timestamp) to be handled "eventually." That is, the request will be sent immediately if possible or the next time a network connection is available.
| + (BFTask<NSNumber *> *) trackAppOpenedWithLaunchOptions: | (nullable NSDictionary *) | launchOptions |
Tracks this application being launched. If this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push.
Pass in nil to track a standard "application opened" event.
| launchOptions | The NSDictionary indicating the reason the application was launched, if any. This value can be found as a parameter to various UIApplicationDelegate methods, and can be empty or nil. |
| + (void) trackAppOpenedWithLaunchOptionsInBackground: | (nullable NSDictionary *) | launchOptions | |
| block: | (nullable PFBooleanResultBlock) | block | |
Tracks this application being launched. If this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push.
Pass in nil to track a standard "application opened" event.
| launchOptions | The dictionary indicating the reason the application was launched, if any. This value can be found as a parameter to various UIApplicationDelegate methods, and can be empty or nil. |
| block | The block to execute on server response. It should have the following argument signature: ^(BOOL succeeded, NSError *error) |
| + (BFTask<NSNumber *> *) trackAppOpenedWithRemoteNotificationPayload: | (nullable NSDictionary *) | userInfo |
Tracks this application being launched. If this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push.
| userInfo | The Remote Notification payload, if any. This value can be found either under UIApplicationLaunchOptionsRemoteNotificationKey on launchOptions, or as a parameter to application:didReceiveRemoteNotification:. This can be empty or nil. |
| + (void) trackAppOpenedWithRemoteNotificationPayloadInBackground: | (nullable NSDictionary *) | userInfo | |
| block: | (nullable PFBooleanResultBlock) | block | |
Tracks this application being launched. If this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push.
| userInfo | The Remote Notification payload, if any. This value can be found either under UIApplicationLaunchOptionsRemoteNotificationKey on launchOptions, or as a parameter to application:didReceiveRemoteNotification:. This can be empty or nil. |
| block | The block to execute on server response. It should have the following argument signature: ^(BOOL succeeded, NSError *error) |
| + (BFTask<NSNumber *> *) trackEvent: | (NSString *) | name |
| + (BFTask<NSNumber *> *) trackEvent: | (NSString *) | name | |
| dimensions: | (nullable NSDictionary< NSString *, NSString * > *) | dimensions | |
Tracks the occurrence of a custom event with additional dimensions. Parse will store a data point at the time of invocation with the given event name.
Dimensions will allow segmentation of the occurrences of this custom event. Keys and values should be NSStrings, and will throw otherwise.
To track a user signup along with additional metadata, consider the following:
NSDictionary *dimensions = "gender": @"m", @"source": @"web", @"dayType": @"weekend" }; [PFAnalytics trackEvent:@"signup" dimensions:dimensions];
| name | The name of the custom event to report to Parse as having happened. |
| dimensions | The NSDictionary of information by which to segment this event. |
| + (void) trackEventInBackground: | (NSString *) | name | |
| block: | (nullable PFBooleanResultBlock) | block | |
Tracks the occurrence of a custom event. Parse will store a data point at the time of invocation with the given event name. The event will be sent at some unspecified time in the future, even if Parse is currently inaccessible.
| name | The name of the custom event to report to Parse as having happened. |
| block | The block to execute on server response. It should have the following argument signature: ^(BOOL succeeded, NSError *error) |
| + (void) trackEventInBackground: | (NSString *) | name | |
| dimensions: | (nullable NSDictionary< NSString *, NSString * > *) | dimensions | |
| block: | (nullable PFBooleanResultBlock) | block | |
Tracks the occurrence of a custom event with additional dimensions. Parse will store a data point at the time of invocation with the given event name. The event will be sent at some unspecified time in the future, even if Parse is currently inaccessible.
Dimensions will allow segmentation of the occurrences of this custom event. Keys and values should be NSStrings, and will throw otherwise.
To track a user signup along with additional metadata, consider the following: NSDictionary *dimensions = "gender": @"m", @"source": @"web", @"dayType": @"weekend" }; [PFAnalytics trackEvent:@"signup" dimensions:dimensions];
There is a default limit of 8 dimensions per event tracked.
| name | The name of the custom event to report to Parse as having happened. |
| dimensions | The NSDictionary of information by which to segment this event. |
| block | The block to execute on server response. It should have the following argument signature: ^(BOOL succeeded, NSError *error) |
1.8.9.1