4 lines
146 B
Objective-C
4 lines
146 B
Objective-C
NSLog(@"%@", @"alphaBETA".uppercaseString);
|
|
NSLog(@"%@", @"alphaBETA".lowercaseString);
|
|
|
|
NSLog(@"%@", @"foO BAr".capitalizedString); // "Foo Bar"
|