我有一个类 songData 我正在解析一个 json 对象并将歌曲对象添加到一个数组中,然后在 atabbarviewcontroller 的 viewcontroller 中设置这个对象数组。在 tabbarcontroller 中访问其显示对象时
如何在 tabbarcontroller 的 viewcontroller 中 gt 该数组。
谢谢
in songsData.m
-(void)loadData{
OnAirViewController *oAVC = [[OnAirViewController alloc]init];//the view controller in Tabbarcontroller
oAVC.songs = [self parsingTheJson:@"http:....."];
NSLog(@" count..%d",[songs count]);//gives 153
}
在 onAirViewController.. 它的给予
NSLog(@" count..%d",[songs count]);//gives 0