Is there a way to just push the right UITableView into the left one without pushing the whole view?

I had an idea about just reloading the table with new data and another CustomCellIdentifier but I’m sure there is a better way of doing it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could instantiate the second table with a frame that places it offscreen to the right (ie with a x coordinate greater than the screen width) and then ‘slide’ it onscreen by setting the x position to 0 inside an animation block. That would appear to slide in over the top of the first table.
If you wanted the first table to slide away to the left, you’d need to set its x position to a negative value in the same animation block.
(This assumes that you’re creating the tables manually and not with
UITableViewControllers, however.)