I am using a Custom UITableViewCell and this cell contains round rect.
This round rect is bounded to action touchup inside and same button is used to perform segue to the other View.
prepareForSegue is called first and then it calls the touch up inside method.
Is there any way to make this reversed?
you can call one method on touch up inside
write your code for what you exactly want to do
and after that you can call your viewcontroller by using following code to perform segue operation
[self performSegueWithIdentifier:@"your segue identifier" sender:self];Hope that will help.