I have button on a UITableViewCell designed in an external nib. I was wondering how to create segue to a view on the storyboard editor from this button.
I’m a little new to all this, so if you could explain the process I’d be really grateful.
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 can’t exactly do that. Assuming the table view that will hold the custom cell is in a view controller within the storyboard, you can create a segue from that controller to the target controller and give the segue a name. Then, when the cell’s button is tapped, have it tell its controller to call
performSegueWithIdentifier:sender:.