基本的に私がやろうとしているのは、ネットワークを更新してオブジェクトをフェッチし、アプリデリゲートの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)