MBPPhotopayOverlayViewController
Objective-C
@interface MBPPhotopayOverlayViewController : MBPBaseOverlayViewController
Swift
class MBPPhotopayOverlayViewController : MBPBaseOverlayViewController
Default version of overlay view controller with modern design.
-
Common photopay UI settings
Declaration
Objective-C
@property (nonatomic, readonly) MBPPhotopayOverlaySettings *_Nonnull settings;Swift
var settings: MBPPhotopayOverlaySettings { get } -
Delegate
Declaration
Objective-C
@property (nonatomic, weak, readonly) id<MBPPhotopayOverlayViewControllerDelegate> _Nullable delegate;Swift
weak var delegate: (any MBPPhotopayOverlayViewControllerDelegate)? { get } -
Designated intializer.
Declaration
Objective-C
- (nonnull instancetype) initWithSettings:(nonnull MBPPhotopayOverlaySettings *)settings recognizerCollection:(nonnull MBPRecognizerCollection *)recognizerCollection delegate:(nonnull id<MBPPhotopayOverlayViewControllerDelegate>) delegate;Swift
init(settings: MBPPhotopayOverlaySettings, recognizerCollection: MBPRecognizerCollection, delegate: any MBPPhotopayOverlayViewControllerDelegate)Parameters
settingsMBPPhotopayOverlaySettings object
recognizerCollectionMBPRecognizerCollection object
Return Value
initialized overlayViewController
View on GitHub