Closed abrpatel closed 5 years ago
Shows up when the view is presented using a segue
class SwiftMessagesTopSegue: SwiftMessagesSegue { override public init(identifier: String?, source: UIViewController, destination: UIViewController) { super.init(identifier: identifier, source: source, destination: destination) configure(layout: .topCard) super.interactiveHide = false super.dimMode = .gray(interactive: false) } }
Would appreciate any suggestions on how to fix it.
The segue intentionally retains itself until you dismiss the view controller in order remain the transitioning delegate for dismissal.
Got it. Thanks!
Shows up when the view is presented using a segue
Would appreciate any suggestions on how to fix it.