You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to present a UIViewController with Presentr controller.
let width = ModalSize.custom(size: Float.init(scheduleDispPrefVC.preferredContentSize.width))
let height = ModalSize.custom(size: Float.init(scheduleDispPrefVC.preferredContentSize.height))
let center = ModalCenterPosition.customOrigin(origin: CGPoint(x: 0, y: 100))
let customType = PresentationType.custom(width: width, height: height, center: center)
presenter = Presentr.init(presentationType: customType)
presenter?.backgroundOpacity = 0.25
presenter?.transitionType = TransitionType.coverVerticalFromTop
presenter?.dismissTransitionType = TransitionType.coverVerticalFromTop
presenter?.backgroundTap = BackgroundTapAction.passthrough
customPresentViewController(presenter!, viewController: scheduleDispPrefVC, animated: true)
ScheduleViewOption is the new vc which i am trying to present below app header but when it is presented then i am not able to click header buttons.
When I run this I get as shown in image.
The text was updated successfully, but these errors were encountered:
Hello,
I am trying to present a UIViewController with Presentr controller.
ScheduleViewOption is the new vc which i am trying to present below app header but when it is presented then i am not able to click header buttons.
When I run this I get as shown in image.
The text was updated successfully, but these errors were encountered: