SBSDKHealthInsuranceCardScannerViewController

@interface SBSDKHealthInsuranceCardScannerViewController
    : SBSDKBaseScannerViewController

A UIViewController subclass to scan health insurance cards with the camera.

  • The delegate. See SBSDKHealthInsuranceCardScannerViewController protocol. Weak.

    Declaration

    Objective-C

    @property (nonatomic, weak) id< SBSDKHealthInsuranceCardScannerViewControllerDelegate> _Nullable delegate;

    Swift

    weak var delegate: SBSDKHealthInsuranceCardScannerViewControllerDelegate? { get set }
  • Not available.

    Declaration

    Objective-C

    - (nonnull instancetype)init;
  • Not available.

    Declaration

    Objective-C

    + (nonnull instancetype)new;
  • Designated initializer. Installs the receiver as child view controller onto the parent view controllers view using its entire bounds area.

    Declaration

    Objective-C

    - (nullable instancetype)
        initWithParentViewController:
            (nullable UIViewController *)parentViewController
                          parentView:(nullable UIView *)parentView
                            delegate:
                                (nonnull id<
                                    SBSDKHealthInsuranceCardScannerViewControllerDelegate>)
                                    delegate;

    Swift

    init?(parentViewController: UIViewController?, parentView: UIView?, delegate: SBSDKHealthInsuranceCardScannerViewControllerDelegate)

    Parameters

    parentViewController

    The view controller the newly created instance is embedded into. If parentViewController conforms to SBSDKLicensePlateScannerViewControllerDelegate, it is automatically set as delegate.

    parentView

    The view the newly created instance is embedded into. If nil the parentViewControllers view is used.

    delegate

    The delegate of the receiver.

    Return Value

    New instance of SBSDKHealthInsuranceCardScannerViewController.