NSString is the plain-text character-string class in Cocoa and Cocoa Touch.
I have a parser returning some string value I'd like to use as parameter for my class instance initialisation. I …
objective-c nsstring floating-point nsnumberI'm writing a property list to be in the resources bundle of my application. An NSString object in the plist …
iphone nsstring plistI'm curious, I currently have an NSDictionary where some values are set to an NSNull object thanks to the help …
objective-c nsstring nsdictionary json-framework nsnullWhat's the best way to get an url minus its query string in Objective-C? An example: Input: http://www.example.…
objective-c url nsstring nsurlI've got a number in a NSString @"15". I want to convert this to NSUInteger, but I don't know how to …
cocoa-touch iphone-sdk-3.0 nsstring nsuintegerHow to copy one NSString to another? @interface MyData : NSObject { @private //user's private info NSInteger uID; NSString *name; NSString *surname; …
iphone nsstring copy copywithzoneI'm using the following code on my iPhone app, taken from here to extract all URLs from striped .html code. …
objective-c regex nsstring nsarray nsregularexpressionHow might I check if a particular NSString is presnet in an NSArray?
iphone objective-c xcode nsstring nsarray