好吧,我有NSMutableArray
一个视图,我想将此数组的值传递给另一个视图。但我不想使用该方法[self presentModel view controller ...]
,因为我只想在按下我创建的另一个按钮时显示另一个视图。问题是,当我按下按钮显示数组的值时,数组会丢失它的值,返回空,但如果我使用该方法[self presentModel view controller ...]
,它会正确返回值。
目前看来:
@property and @synthesise AnotherViewController *superAnother
AnotherViewController *anView = [[AnotherViewController alloc]initWithNibName:nil bundle:nil];
superAnother.arrayOfTheAnotherView = [[NSMutableArray alloc]initWithArray:arrayOfTheCurrentView];
另一种观点:
@property and @synthesise NMutableArray *arrayOfTheAnotherView;
NSMultableArray array = [[NSMultableArray alloc]initWithArray:arrayOfTheAnotherView];
使用数组加载表视图:
cell.textLabel.text = [array objectAtIndex:indexPath.row];