Created
February 10, 2011 17:16
-
-
Save ddb/820910 to your computer and use it in GitHub Desktop.
These method declarations make my head hurt. These are from a sample project for an app that just showed up in the dev tools section of the mac app store -- note that you can use bare colons in method names. I did not know that.
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
@interface WebServiceHelper : NSObject { | |
} | |
+(NSURLRequest *) generateWebServiceURLRequest : (NSString *) url: (NSString *) methodName: (NSArray *) keys: (NSArray *) objects; | |
+(NSURL *) generateWebServiceHTTPGetURL : (NSString *) url: (NSString *) methodName: (NSArray *) keys: (NSArray *) objects; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment