I have created a custom popup bar and an AudioDetailsViewController, where I present the PlayerViewController. However, when dismissing the PlayerViewController, a white space appears at the bottom of the UI. this controller dont have tabbar #595
Unanswered
asraghuvanshi
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i have designed customPopup how to present it
AudioDetailVC : UIViewController {
func buttonTap(){
let musicPlayerVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "MusicPlayerViewController") as! MusicPlayerViewController
musicPlayerVC.modalPresentationStyle = .overFullScreen
musicPlayerVC.mediaModel = self.modelData
musicPlayerVC.playMode = .online
musicPlayerVC.modalTransitionStyle = .crossDissolve
self.presentPopupBar(withContentViewController: musicPlayerVC, openPopup:true, animated: false, completion: nil)
}
}
class CustomPopupBarViewController: LNPopupCustomBarViewController {
}
Beta Was this translation helpful? Give feedback.
All reactions