Page Summary
-
MLKFlightNumberEntityis an Objective-C class representing a flight number extracted from text. -
It includes properties for the airline code (
airlineCode) and the flight number (flightNumber). -
The
airlineCodefollows the IATA standard and can be two or three letters. -
The
flightNumberis represented as a string and can contain 1 to 4 digits. -
Direct initialization using
initis unavailable.
MLKFlightNumberEntity
@interface MLKFlightNumberEntity : NSObjectA flight number entity extracted from text.
-
The IATA airline designator (two or three letters).
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull airlineCode; -
The flight number (1 to 4 digit number).
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull flightNumber; -
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init;