之間傳遞NSMutableArray我有兩個視圖控制器名稱RootViewController和SecondViewController。在FirstViewController我有這樣的NSMutableArray在兩個UIViewController的
@interface RootViewController : UITableViewController {
NSMutableArray *allClasses;}@property (nonatomic,retain) NSMutableArray *allClasses;
在RootViewController的我填充的UITableView與內allClasses
所有對象在我SecondViewController我有
@interface SecondViewController : UIViewController <UITextFieldDelegate,UIPickerViewDelegate> {
NSMutableArray *arrayStrings;}
我有增加了新的方法NSString到arrayStrings。我的目標是通過嘗試類似於allClasses = arrayStrings的方法將arrayStrings傳遞給RootViewController。這樣,當RootViewController被加載時,它可以填充新的信息。
我如何才能完成這項任務?