MLKitBarcodeScanning Framework Reference

  • MLKBarcodeCalendarEvent represents a calendar event extracted from a QR code.

  • It provides read-only access to event details such as description, location, organizer, status, summary, start date, and end date.

  • These details are accessible through properties like eventDescription, location, organizer, status, summary, start, and end.

  • Initialization of MLKBarcodeCalendarEvent directly using init is not allowed.

MLKBarcodeCalendarEvent


@interface MLKBarcodeCalendarEvent : NSObject

A calendar event extracted from a QR code.

  • Calendar event description.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *eventDescription;
  • Calendar event location.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *location;
  • Calendar event organizer.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *organizer;
  • Calendar event status.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *status;
  • Calendar event summary.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *summary;
  • Calendar event start date.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSDate *start;
  • end

    Calendar event end date.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSDate *end;
  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;