I override the - (void)sendEvent:(UIEvent *)event method of UIApplication to handle some touch event.

.h

@interface myUIApplication : UIApplication {

}

.m

@implementation myUIApplication

- (void)sendEvent:(UIEvent *)event {
    NSLog(@"a event catched");
    [super sendEvent:event];
}

@end

and I edit my File's Owner's class to myUIApplication in MainWindow.xib. But when I touch the screen There is no output like @"a event catched"

Is there some mistake I have?

Thanks!

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You will have to pass @"myUIApplication" to UIApplicationMain function. So it should be,

int retVal = UIApplicationMain(argc, argv, @"myUIApplication", nil);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.