Possible Duplicate:
ios5 how to pass prepareForSegue: an object
iPhone utility application, Label text does not update in FLipSideView
Am a bit of an Xcode newbie, am finding my feet but have been looking at this for a few days and am going round in circles...am using a storyboard - I have a view with a table containing song titles which is populated by an array - on selecting the row in the table I want to pass the song title to a detail view.
Have managed to get the segue etc set up and working with no problems, but cannot get the title to pass. I can pass text in my prepareForSegue so I know this isn't the problem. I can also populate the string I want to pass in didSelectRow so that seems to be fine as well. Just think I'm missing something. Any help would be appreciated.
relevant coding is as follows :
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Save text of the selected cell:
PrototypeCell *cell = (PrototypeCell *) [tableView cellForRowAtIndexPath:indexPath];
songPush = cell.songTitle.text;
NSLog(@"value of songPush in didSelect = %@", songPush);
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"lyricView"]) {
NSLog(@"check value of songPush = %@", songPush);
detailViewController *svc = segue.destinationViewController;
svc.testText = @"passed through";
}
}