MLKitBarcodeScanning Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
MLKBarcodeCalendarEvent
@interface MLKBarcodeCalendarEvent : NSObject
A calendar event extracted from a QR code.
-
Calendar event description.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *eventDescription;
-
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *location;
-
Calendar event organizer.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *organizer;
-
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *status;
-
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSString *summary;
-
Calendar event start date.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDate *start;
-
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDate *end;
-
Declaration
Objective-C
- (nonnull instancetype)init;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[[["`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` extracts calendar data from a QR code. It provides read-only properties, including `eventDescription`, `location`, `organizer`, `status`, and `summary` as strings. Additionally, it captures the event's `start` and `end` dates as `NSDate` objects. The `init` method is unavailable for direct instantiation. This class represents an extracted calendar event's essential details.\n"]]