我有包含 NSMutableArray 的 UIViewController ,我想将此数组传递给 UITableViewController 并在桌子上查看它.. 我该怎么做?
我的意思是我想(传递)NSMutableArray 或从 UIViewController 到 UITableViewController 的任何变量而不是(创建)表
我想将 newBooksArray 传递给 UITableViewController,我在 UIViewController 中写道:
mytable.gettedBooks = newBooksArray; // gettedBooks is NSMutableArray in UITableViewController
mytable.try = @"Emyyyyy"; // try is a NSString in UITableViewController
我在 DidloadView 的 UITableViewController 中写了
NSLog(@"Try: %@", try); // out is null
NSLog(@"my getted array count: %d", [gettedBooks count]); // out is 0
有什么帮助吗???