2010-02-18 15 views

回答

2

根据我的经验,你可以截取和处理所有触摸的最低级别是UIApplication(它来自UIResponder)。在这里没有什么难度,因为你只需要覆写:

 
- (void)sendEvent:(UIEvent *)event 
{ 
    [super sendEvent:anEvent]; 
    /* Place your custom */ 
    /* processing code here*/ 
} 
相关问题