I have a UITabBarController based app. I've made a masterVC Class, all ViewControllers that make up the tabBarController are subclasses of the masterVC. I want to set an UIImageView (which is a property of masterVC) that once set shows that image on each view within the tabBarController.
If I was instantiating each VC I could pass the image as a property (this would be simple). However, there's no method to do this between tabBarController ViewControllers.
The easiest conceptual example of what I'm trying to do is by this example in each view Controller within the tabBarController. There has to be a better way:
-(void)viewDidAppear:(BOOL)animated
{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSData *data = [defaults objectForKey:kMainImageData];
if (data) {
self.mainImageView.image = [NSKeyedUnarchiver unarchiveObjectWithData:data];
}
}
-(void)viewWillDisappear:(BOOL)animated
{
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:self.mainImageView.image];
[[NSUserDefaults standardUserDefaults] setObject:data forKey:kMainImageData];
}