Codec ░ array

265Like explode(), only componentsSeparatedByString:

PHP
explode(“, ” , “One, Two, Three”);

Objective-C
NSArray *listItems = [@"One, Two, Three" componentsSeparatedByString:@", "];

319Chaning Colors in Twitter with the API 289Simulating Keyboard & Mouse Events. And Key-Modifier Events 275UIWebView – checking when user clicks a link 269Caching on Objective-C with NSURLCache 259The mystery of self.* – resolved?

9Obj-C: Sorting Array

[myArray sortUsingSelector:@selector(caseInsensitiveCompare:)];

NSArray Class Reference -> sortedArrayUsingSelector

or:
[myArray sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

289Simulating Keyboard & Mouse Events. And Key-Modifier Events 275UIWebView – checking when user clicks a link 269Caching on Objective-C with NSURLCache 265Like explode(), only componentsSeparatedByString: 259The mystery of self.* – resolved?