Upvote:1

Aprove answer
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([segue.identifier isEqualToString:@"seguesss"]) {
        SecondViewController *vc = (SecondViewController *)segue.destinationViewController;
        //then vc.property = ?? or [vc method]
    }
}

Credit Goes to: stackoverflow.com

Related question with same questions but different answers