STZPopupView
STZPopupView copied to clipboard
Can't display popup view from another popup view [Question]
I would like to show myFirst popup view, then when I clicked a button inside myFirst popup view, I would like to dismiss myFirst popup view and open mySecond popup view. But after myFirst popup view dissmissed, mySecond popup view not presenting..
Here is what I tried so far;
To open myFirst popup:
presentPopupView(myFirst!)
it is working fine, then when I clicked button in this popup view, I am doing this:
self.dismissPopupView() self.presentPopupView(mySecond!)
In here, myFirst popup dissmiss correctly. But there is no mySecond popup view displaying..
Any advise? Thanks