DJIRCInfo

@interface DJIRCInfo : NSObject

This class contains the information for a remote controller.

  • Remote Controller’s unique identifier.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic) DJIRCID identifier;
  • Remote Controller’s name.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *_Nullable name;
  • Remote Controller’s password.

    Declaration

    Objective-C

    @property (readwrite, strong, nonatomic) NSString *_Nullable password;
  • Signal quality of a conneected master or slave Remote Controller.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic)
        DJIRCSignalQualityOfConnectedRC signalQuality;
  • Remote Controller’s control permissions.

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic)
        DJIRCControlPermission controlPermission;
  • Converts the Remote Controller’s unique identifier from the property identifier to a string.

    Declaration

    Objective-C

    - (NSString *_Nullable)RCIdentifier;

    Return Value

    Remote Controller’s identifier as a string.