i’ve UITableViewController which have static cell. I would like to show another detailed view once user tab on one of the static Table View Cell.
notice, i’m using interface builder with storyboard.
how to to do this?
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.
In the storyboard, click on the main TableViewController, then go to the “Editor” menu (very top) and select Embed In > Navigation Controller.
Then Drag a new View Controller to the storyboard. (Yellow Ball with the dashed line square shape)
Then hold down the Control Key and drag from your tablecell to the new view to create a segue. When you release the mouse button, choose “Push.”
Note: To set a custom “back button” text, you do so by selecting the “Navigation Item in the Tableview controller, not the detail view.
Hope that helps.