I have a UITabBarController that is nested in a UIView-Subclass (ImageViewer) as a third tab.
In this subclass of ImageViewer, I call the method viewDidAppear:
- (void) viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
the method is called automatically, but, strangely enough, the view appears only after this method is fully processed?
When I set breakpoints (1 and 2) as indicated, processing (when selecting a tab) stops while the previous tab is still displayed. Only when you click Continue after the second breakpoint will the view be displayed. (FYI NSLogs run silently).
In this case, it viewDidAppearbehaves more like viewWillAppear....
Any clues what might happen?
Greetings