CLUOptions

@interface CLUOptions : NSObject

CLUOptions is a data model class to store all configurational variables during Clue framework setup and enable process. For now only email property is available. If you need more configurational property which could be used during first setup - just subclass this class

Used in ClueController configuration @code [[ClueController sharedInstance] enableWithOptions:];

  • Email address where user will send an email with recorded report attached to it.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) NSString *email;

    Swift

    var email: String! { get set }
  • Create new CLUOptions instance with email adress

    Declaration

    Objective-C

    + (instancetype)optionsWithEmail:(NSString *)email;

    Swift

    convenience init!(email: String!)

    Parameters

    email

    Email address where user will send an email with recorder report in attachment.

    Return Value

    instance of CLUOptions