AI-generated Key Takeaways
-
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
, andend
. -
Initialization of
MLKBarcodeCalendarEvent
directly usinginit
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;
-
Calendar event end date.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) NSDate *end;
-
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init;