NSString is the plain-text character-string class in Cocoa and Cocoa Touch.
(have searched, but not been able to find a simple solution to this one either here, or in Cocoa docs) …
cocoa nsstring whitespace trimI am trying to understand the correct way of getting an NSString from a CFStringRef in ARC? Same for going …
objective-c nsstring automatic-ref-counting toll-free-bridgingHow can I add a percent to my stringWithFormat function? For example, I'd like to have the following: float someFloat = 40.233…
iphone ios nsstring stringwithformatI am programming in Objective-C for iOS. I would like to parse an object of type NSString into a scalar …
objective-c cocoa nsstring booleanI have an array with a bunch of strings and I want to check if a certain string is contained …
cocoa nsstring nsarrayI have a string! NSString *myString=[NSString stringWithFormat:@"This is my lovely string"]; What I want to do is: Assuming …
objective-c ios nsstring substring nsrangeI have an NSMutable dictionary that contains file IDs and their filename+extension in the simple form of fileone.doc …
iphone objective-c regex ios5 nsstringI am using the NSURLRequest class in my iPhone app, and the method that calls it returns an NSString which …
objective-c nsstring nserrorAssume that I have a String like this: hello world this may have lots of sp:ace or little space …
objective-c nsstring nsarray whitespaceSo I have this: NSData *charlieSendData = [[charlieImputText stringValue] dataUsingEncoding:NSUTF8StringEncoding]; I know how to convert NSStrings to data but …
objective-c nsstring nsdata