I've got a question concerning my Storyboard. I want to change the value of a string which is in ViewA through a segue. That means that ViewB should do the segue and in preparation for that changing the value of the string in ViewA. My problem is now, that the value of my string stays unchanged.
ViewA.h file:
@interface NewViewController : UITableViewController <MKAnnotation>
{
NSString *longString;
}
@property (weak, nonatomic) NSString *longString;
ViewB.m file:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"transmitCoordsToNew"])
{
NewViewController *controller = (NewViewController *)segue.destinationViewController;
controller.longString = [NSString stringWithFormat:@"%f", segueLong];
}
}
Any idea why the variables stay unchanged or why I can't see any changes on further operating in ViewA?
Thanks in advance,
Phil