I\'m building a collection of forms each of which contains several fields. Some of the fields are UITextField
s that will display a date. I\'ve created a new cla
Add a UIView in the scene dock.
You can add it as a subview to any existing view on the view controller.
You can then toggle it's isHidden property as you require.
You can add multiple such subviews and create many such popups.
This technique will save you from setting up a new View Controller and using segues.