NSString
Jump to navigation
Jump to search
Strings in GNUstep use the NSString class in gnustep-base. See the reference manual for gnustep-base for more details about NSString.
Constant Strings
As in plain C, you can create strings in GNUstep that automatically flatten out to be static instances of NSString. This is done by preceding the quoted string by an "at" symbol ('@'). For example:
NSString * myString = @"This is an example of a string."; NSLog(myString);