MLKitEntityExtraction Framework Reference

  • MLKIBANEntity represents an International Bank Account Number (IBAN) extracted from text.

  • It provides access to the full IBAN in canonical form and the ISO 3166-1 alpha-2 country code.

  • The init method is unavailable; presumably, instances are created through other means within the framework.

MLKIBANEntity


@interface MLKIBANEntity : NSObject

An IBAN entity extracted from text.

  • The full IBAN number in canonical form. For example, CH9300762011623852957.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull IBAN;
  • The ISO 3166-1 alpha-2 country code (two letters). For example, CH.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull countryCode;
  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;