Reputation: 4693
What I have an iphone screen with a main UIView which has another UIView inside it with the size of 280x280 which has a tableview inside it. What I want is that when a user selects any row of that table inside that inner UIView, it pushes the user to another 280x280 UIView, so basically the main view is going to be fixed but only the inner view changes. What's the concept that can make this happen ?
Thanks in advance.
Upvotes: 0
Views: 473
Reputation: 151
I think that user994813 wants to say this:
Upvotes: 1
Reputation: 3093
you need to create two 280*280 view one for your tableview and another for other(push view) and whenever you select table row you need to hidden true first view and hidden false second view(pushview).
Upvotes: 0