NSString is the plain-text character-string class in Cocoa and Cocoa Touch.
I have an NSMutableString, how can I convert it to an NSString?
objective-c nsstring nsmutablestringI'm a java guy coming over to Objective-C. In java, to add a variable to a string you'd have to …
objective-c ios xcode nsstring nsmutablestringI have a URL in an iPhone application to work with. But the problem is that it has some spaces …
ios objective-c nsstring nsurlHi I am woundering if you can check to see if a NSString equals a specific value say for instance …
iphone ios nsstringHow can I have a two-digit integer in a a string, even if the integer is less than 10? [NSString stringWithFormat:@"%…
objective-c string cocoa nsstring number-formattingI got a string that contains the current date by using this : NSString *date = [[NSDate date] description]; At a different …
cocoa nsstring nsdate nsdateformatterSay I have a string: NSString *state = @"California, CA"; Can someone please tell me how to extract the last two …
objective-c nsstringI have been googling so much on how to do this, but how would I reverse a NSString? Ex:hi …
objective-c cocoa nsstringCan we not convert NSMutableAttributedString to NSString? I have two NSMutableAttributedStrings and I am appending the 2nd string onto 1st …
ios objective-c nsstring uilabel nsmutableattributedstringI need to use something like NSLog but without the timestamp and newline character, so I'm using printf. How can …
objective-c cocoa-touch nsstring printf nslog