BDPNamedDescribed

Objective-C

@protocol BDPNamedDescribed

Swift

protocol BDPNamedDescribed

Any object having a human-readable name and description, typically for display in a User Interface.

  • Human-readable name of this object.

    Declaration

    Objective-C

    @property (copy) NSString *name;

    Swift

    var name: String! { get set }
  • Human-readable description for this object.

    Declaration

    Objective-C

    @property (copy) NSString *description;

    Swift

    var description: String! { get set }