ビュー間でデータを渡す際に問題があります。以下を使用して NSMutableArray を簡単に渡すことができます。
DetailViewController *detailNote = [self.storyboard instantiateViewControllerWithIdentifier:@"detailNote"];
detailNote.ArrayItem = [allAnotacionsEntries objectAtIndex:indexPath.row];
[self.navigationController pushViewController:detailNote animated:YES];
しかし、追加の NSMutableArray をビューに渡したいのですが、その方法がわかりません。
誰でも私を助けることができますか?