pass data between uiview

Posted by user1312508 on Stack Overflow See other posts from Stack Overflow or by user1312508
Published on 2012-11-13T16:57:39Z Indexed on 2012/11/13 17:00 UTC
Read the original article Hit count: 187

Filed under:
|
|

I have a problem passing data between view. I can pass my NSMutableArray easily using :


DetailViewController *detailNote = [self.storyboard instantiateViewControllerWithIdentifier:@"detailNote"];

 detailNote.ArrayItem = [allAnotacionsEntries objectAtIndex:indexPath.row];

[self.navigationController pushViewController:detailNote animated:YES];

but I want to pass additional NSMutableArray to the view and i don´t know how to do it.

Please anyone can help me ?

Thanks

© Stack Overflow or respective owner

Related posts about xcode

Related posts about data