基本上我要做的是进行网络刷新并获取对象,将其存储在我的应用程序委托中的 nsmutable 数组中。然后我有一个 listviewController 使用该可变数组来显示数据。
设置 nsarray 在这里不起作用是代码:
//Appdelegate code called after pulldown to refresh is done on listview:
[ListView setArrayElements:(NSMutableArray*)sortedArray ];
NSLog(@"sortedArray count:%d",sortedArray);
NSLog(@"ListView Array count:%d",[ListView.ArrayElements count]);
Result i get in log : "sortedArray count:12" (which is perfect)&"ListView Array count:0" (this is not the right result)