我在视图之间传递数据时遇到问题。我可以使用以下方法轻松传递我的 NSMutableArray:
DetailViewController *detailNote = [self.storyboard instantiateViewControllerWithIdentifier:@"detailNote"];
detailNote.ArrayItem = [allAnotacionsEntries objectAtIndex:indexPath.row];
[self.navigationController pushViewController:detailNote animated:YES];
但我想将额外的 NSMutableArray 传递给视图,但我不知道该怎么做。
请问有人可以帮助我吗?