Created
March 29, 2010 20:07
-
-
Save mwbrooks/348349 to your computer and use it in GitHub Desktop.
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
// Method Signature | |
// | |
- (BOOL)searchFor:(NSString *)string | |
direction:(BOOL)forward | |
caseSensitive:(BOOL)caseFlag | |
wrap:(BOOL)wrapFlag | |
// Selector (Method Name) | |
// | |
searchFor:direction:caseSenstitive:wrap | |
// Keywords | |
// | |
searchFor: | |
direction: | |
caseSensitive: | |
wrap: | |
// Message (Method Call) | |
// | |
[myWebView searchFor:myString direction:YES caseSensitive:NO wrap:YES] | |
// Run-time Equivalent | |
// | |
objc_msgSend(myWebView, | |
searchFor:direction:caseSensitive:wrap:, | |
myString, YES, NO, YES) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment