Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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";
    }
}
share|improve this question
See my answer there - at prepareForSegue, the view of the destination VC has not loaded. Pass as a string and set your label from the string in viewWillAppear. – jrturton Jun 22 '12 at 7:17

marked as duplicate by jrturton, aleroot, 0x7fffffff, Donal Fellows, Evan Mulawski Jun 23 '12 at 17:16

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

Browse other questions tagged or ask your own question.