Created
June 29, 2010 23:54
-
-
Save probablycorey/458011 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
| // Why I Hate Objective-C | |
| NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: | |
| @"getPopular", @"method", | |
| [NSString stringWithFormat:@"%d", [offset intValue]], @"offset", | |
| nil]; |
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
| -- Why I like Lua | |
| params = {method = "getPopular", offset = offset} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment