Last active
August 29, 2015 14:27
-
-
Save mikeabdullah/775bb85b63f2d240a0a3 to your computer and use it in GitHub Desktop.
Some of NSResponder
This file contains 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
@interface NSResponder | |
- (BOOL)tryToPerform:(SEL)anAction with:(id)anObject; | |
- (void)doCommandBySelector:(SEL)aSelector; | |
@end | |
@interface NSApplication | |
- (BOOL)sendAction:(SEL)theAction to:(id)theTarget from:(id)sender; | |
- (id)targetForAction:(SEL)theAction to:(id)theTarget from:(id)sender; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment