Created
April 4, 2010 23:30
-
-
Save NYiPhoneDeveloper/355809 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
NSArray *colorList = [NSArray arrayWithObject: [NSDictionary dictionaryWithObjectsAndKeys: | |
@"BrownColor", @"titleValue", [UIColor brownColor], @"colorValue", nil], | |
[NSDictionary dictionaryWithObjectsAndKeys: @"orangeColor", @"titleValue", [UIColor orangeColor], @"colorValue", nil], | |
[NSDictionary dictionaryWithObjectsAndKeys: @"purpleColor", @"titleValue", [UIColor purpleColor], @"colorValue", nil]; | |
[NSDictionary dictionaryWithObjectsAndKeys: @"redColor", @"titleValue", [UIColor redColor], @"colorValue", nil], nil]; | |
[colorList retain]; | |
// Playing with some new code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment