ForeSeeDelegate Protocol Reference

Conforms to NSObject
Declared in ForeSee.h

Overview

Delegates registered with the ForeSee SDK may adopt the ForeSeeDelegate protocol to receive updates about the SDK’s lifecycle.

– didStartSDK

Tells the delegate that the SDK has been started.

- (void)didStartSDK

Declared In

ForeSee.h

– didStartSDKWithError:message:

Tells the delegate that the SDK has been started, but a recoverable error occurred.

- (void)didStartSDKWithError:(FSErrorCode)error message:(NSString *)message

Parameters

error

The error type

message

A message describing the error

Declared In

ForeSee.h

– didFailToStartSDK:

Tells the delegate when the SDK has failed to start.

- (void)didFailToStartSDK:(FSErrorCode)error

Parameters

error

The error type

Declared In

ForeSee.h

– didFailToStartSDKWithError:message:

Tells the delegate when the SDK has failed to start.

- (void)didFailToStartSDKWithError:(FSErrorCode)error message:(NSString *)message

Parameters

error

The error type

message

A message describing the error

Declared In

ForeSee.h