Created
June 6, 2010 03:10
-
-
Save choonkeat/427258 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIWindow+MyWindow.h | |
| // | |
| #import <Foundation/Foundation.h> | |
| @interface UIWindow (MyWindow) | |
| - (void)addEventMonitor:(void *)monitor; | |
| - (void)removeEventActivityMonitor:(void *)monitor; | |
| - (void)pendingMouseUpCount; | |
| @end | |
| // | |
| // UIWindow+MyWindow.m | |
| // | |
| #import "UIWindow+MyWindow.h" | |
| @implementation UIWindow (MyWindow) | |
| - (void)addEventMonitor:(void *)monitor {} | |
| - (void)removeEventActivityMonitor:(void *)monitor {} | |
| - (void)pendingMouseUpCount {} | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment