MLKitBarcodeScanning Framework Reference

  • MLKBarcodeWiFi objects store Wi-Fi network information extracted from QR codes.

  • They provide read-only access to the Wi-Fi's SSID, password, and encryption type.

  • Although unavailable through init, instances are likely obtained by decoding relevant QR codes using the ML Kit SDK.

MLKBarcodeWiFi


@interface MLKBarcodeWiFi : NSObject

Wi-Fi network parameters from a WIFI: or similar QR Code type.

  • A Wi-Fi access point SSID.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *ssid;
  • A Wi-Fi access point password.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *password;
  • A Wi-Fi access point encryption type.

    Declaration

    Objective-C

    @property (nonatomic, readonly) MLKBarcodeWiFiEncryptionType type;
  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;