Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to override viewDidAppear: method in category to get in console current view controller.

#import "UIViewController+Additions.h"

@implementation UIViewController (UIViewControllerAdditions)

#ifdef DEBUG
- (void)viewDidAppear:(BOOL)animated {
    NSLog(@"|||| CONTROLLER: %@", [self class]);
}
#endif

@end

I noticed that it works perfectly on iOS5 and called exactly after viewDidAppear: of any viewcontroller object, but on iOS4.2 viewDidAppear: method in viewcontrollers doesn't invoked. Only this method in category called.

According UIViewController.h comment the method viewDidAppear: does nothing by default, that's why I had decided to use it. But I don't know where's the problem on iOS4.x.

Can you help me with that please? Or may be you use some other solution for the same action?

Thanks in advance

share|improve this question
4  
First, try to improve your acceptance rate!!! – Parkyprg Nov 15 '11 at 10:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.