This link is my storyboard, i want to sent data from VC 1 to VC 3
. I can travel from VC 1 to VC 3
with segue perfectly,but I cant sent data from VC 1 to VC 3
, as i cant create an instance that is holding the destination VC
.
Help is very much appreciated
EDIT: From VC1 am firing
[self performSegueWithIdentifier:@"firstSegueFromleft" sender:self];
This is the segue that is the first segue from the left (topone) But I cannot sent data to VC3 by this method, but it is traveling to it.
I am getting an error "Unrecognized selector" when i try to access a property declared in VC3 in prepareForSegue of VC1.