In my application, I have two View Controllers - a UIViewController and UITableViewController. Now, in my TableViewController implementation I need to retrieve some data from the UIViewController (a property - array). The array it's synthesized, so what I'm actually doing is that in the implementation of the UITableViewController, I'm creating a instance of my UIViewController, an array, and just set the array to [myUIViewController getTheArray]. I know it won't work this way, it's just retrieving nil, but in my VC it's actually full of data. I am stuck at this point, I could've tried with the performSegueWithIdentifier method, but these views are not directly connected via a segue to each other. They are embedded in a Tab Bar View, and my ViewController has absolutely nothing to do with my TableViewController. Any idea on how to make this work properly? Thanks.
@interface classA : UIViewController
@property (strong, nonatomic) Playlist* playlist;
-(Playlist*) getTheCurrentPlaylist;
@end
@implementation classA
@synthesize playlist = _playlist;
// add data to _playlist
-(Playlist*) getTheCurrentPlaylist{
return _playlist;
}
@end
now, to classB
@interface classB : UITableViewController
@property (strong ,nonatomic) Playlist* playlistTab;
@end
@implementation classB
@synthesize playlistTab = _playlistTab;
-(void) viewDidLoad{
[super viewDidLoad];
classA *cla = [[classA alloc] init];
// what has to be done here?
_playlistTab = [cla getTheCurrentPlaylist];
}
I hope this makes it clear.
