Carrier

Objective-C

@interface Carrier : NSObject
@property (strong, readonly) ParsedContent* content;
@property (strong, readonly) AVMetadataObjectType type;
@property (readonly) CGPoint center;

- (instancetype)initWithContent: (ParsedContent *) content type:(AVMetadataObjectType) type center:(CGPoint) center;
@end

Swift

class Carrier : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property (strong, readonly) ParsedContent* content

    Swift

    var content: ParsedContent { get }
  • Undocumented

    Declaration

    Objective-C

    @property (strong, readonly) AVMetadataObjectType type

    Swift

    var type: AVMetadataObject.ObjectType { get }
  • Undocumented

    Declaration

    Objective-C

    @property (readonly) CGPoint center

    Swift

    var center: CGPoint { get }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype)initWithContent: (ParsedContent *) content type:(AVMetadataObjectType) type center:(CGPoint) center;

    Swift

    init(content: ParsedContent, type: AVMetadataObject.ObjectType, center: CGPoint)