It sounds like you want a modal view or you need to load an entirely new view all together.
If you add a view to another view as a subview it must be contained in the superviews bounds. There is no way to make a subview larger than its containing view.
A modal view can completely overlay any other views on the screen but it is not part of the view hierarchy. These are used for operations such as alerts or for sheets to fetch a specific piece of information related to view underneath.
If you need to completely obscure the original view, you need to load the other view and its view controller. Use a navigation controller to manage the views. By altering the transition, you can create the illusion that you are sliding sideways to another view, flipping to the back of the first view etc.