Top "Nsstring" questions

NSString is the plain-text character-string class in Cocoa and Cocoa Touch.

how to change the color of text in string when I use stringWithFormat function?(iphone)

I am using this in a project, lblDetail.text =[NSString stringWithFormat:@"%@:%@",lblName.text,lblDetail.text]; in this lblName and lblDetail …

iphone ios nsstring uicolor stringwithformat
Problem using NSRange: Index out of bounds

I am trying to detect website URL's in my string and then doing some attribution string stuff like bolding it …

iphone cocoa-touch nsstring nsrange
how to convert an unsigned int to NSString?

I have an unsinged int having value of -10, now I want to convert it into NSString. In simply we …

iphone nsstring unsigned-integer
Converting NSString to unichar in iOS

I have seen questions in stackoverflow that convert unichar to NSString but now I would like to do the reverse. …

ios objective-c nsstring unichar
What is a NSPathStore2?

All that I know is this: Its private Its created somehow cause of strings trying to do Path related things …

xcode debugging nsstring allocation
Swift Xcode "EXC_BAD_INSTRUCTION"

when I try to run my game I get this fatal error: unexpectedly found nil while unwrapping an Optional value …

ios swift nsstring uilabel exc-bad-instruction
Is a literal NSString autoreleased or does it need to be released?

When creating a string using the following notation: NSString *foo = @"Bar"; Does one need to release foo? Or is foo …

objective-c cocoa-touch memory-management nsstring literals
NSURL file extension addition etc

I have received a URL from the savePanel sheet and I would like to do following: Check to see if …

objective-c nsstring nsurl
In Objective-C, how to print out N spaces? (using stringWithCharacters)

The following is tried to print out N number of spaces (or 12 in the example): NSLog(@"hello%@world", [NSString stringWithCharacters:" " …

objective-c ios nsstring core-foundation
Problems with converting a CGPoint to a string

I have been having problems with converting a CGPoint to a string. I have tried various methods, but this seems …

cocoa-touch string nsstring cgpoint