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, nullable) id<SBSDKHealthInsuranceCardScannerViewControllerDelegate> delegate;
Swift
weak var delegate: SBSDKHealthInsuranceCardScannerViewControllerDelegate? { get set }
-
Installs the receiver as child view controller onto the parent view controllers view using its entire bounds area.
Declaration
Objective-C
- (nullable instancetype) initWithParentViewController: (nonnull UIViewController *)parentViewController parentView:(nonnull UIView *)parentView delegate: (nullable id< SBSDKHealthInsuranceCardScannerViewControllerDelegate>) delegate;
Swift
init?(parentViewController: UIViewController, parentView: UIView, delegate: SBSDKHealthInsuranceCardScannerViewControllerDelegate?)
Parameters
parentViewController
The view controller the newly created instance is embedded into.
parentView
The view the newly created instance is embedded into.
delegate
The delegate of the receiver.
Return Value
New instance of SBSDKHealthInsuranceCardScannerViewController.