pass data between uiview
- by user1312508
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