Suppose I have created a UIView
, MyView
, in Interface Builder, and I have hooked it up (set its File's Owner) to my UIViewController
class, MyViewController
.
Now, I would like to present view. It's just another view, so I don't want to present it as a modal view.
How do I go about displaying it? Should I add it as a subview of my window? If so, where does it go relative to my other views? Should I present it as a view in its own right somehow, and disable the other views? What is the mechanism?