I have a short question about ARC and releasing objects.
In my little iPad App I have a "switch language" functionality realized with an observer. Every ViewController is registrating it self at my Observer at viewDidLoad.
- (void)viewDidLoad
{
[super viewDidLoad];
[observer registerObject:self];
}
Hits the user a language Button, the new language will be stored in my model and the observer will be notified to perform an updateUi selector on his registered objects.
Works great expect of the ViewControllers in my TabBarController because when the TabBar fires up, it gets the TabBar Buttons from its ViewControllers without initializing the view. so no language change will happen until the view is loaded or i do the register with my observer in the init method.
While doing the register in the viewDidLoad Method, i do my unregister in the viewDidUnload. This will not work in the ViewControllers for my TabBarController. So my idea was, to override the dealloc method to perform my unregister.
But here is my problem. When I do
- (void) dealloc
{
[dataModel unregisterObject:self];
[super dealloc];
}
Xcode says
ARC forbids explicit message send of 'dealloc'
Now I am trapped. Is there another way to get informed when my object is dying?