Top "Nsstring" questions

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

How to extract and remove scheme name from NSURL?

What is proper way to extract and remove scheme name and :// from a NSURL? For example: note://Hello -> @"…

ios objective-c regex nsstring nsurl
Weak NSString variable is not nil after setting the only strong reference to nil

I have a problem with this code : __strong NSString *yourString = @"Your String"; __weak NSString *myString = yourString; yourString = nil; __unsafe_unretained …

objective-c memory-management nsstring automatic-ref-counting weak-references
how to use stringByTrimmingCharactersInSet in NSString

I have a string which gives the Date (below) NSString*str1=[objDict objectForKey:@"date"]; NSLog(@" str values2%@",str1); --> 04…

iphone ios nsstring nscharacterset
Remove part of an NSString

I have an NSString as follows: <img alt="996453912" src="http://d2gg0uigdtw9zz.cloudfront.net/large/996453912.jpg" />&…

ios4 nsstring substring explode
How to split a delimited NSString into NSArray

I have a little problem when I try to split delimited string into an Array. Basically, I want to pass …

ios nsstring nsarray addressbook
What is difference between URLWithString and fileURLWithPath of NSURL?

In my code I have to use URLWithString to play streaming(HLS) video and fileURLWithPath to play local video. What …

ios objective-c path nsstring nsurl
How to URL encode a NSString

I am trying to url encode a string, but the NSURLConnection is failing because of a 'bad url'. Here is …

encoding nsstring nsurl
comma separated thousand NSString stringWithFormat

Is it possible to display 1000.99 as 1,000.99 using [NSString stringWithFormat:@"£%0.2f", 1000.99] Please guide me if I am not on the right …

iphone ios objective-c nsstring stringwithformat
JSON string from NSDictionary having file path

I am working on the app in which I store the file name and file path in NSDictionary. My dictionary …

ios objective-c parsing nsstring sbjson
Displaying Integer value in a Label , int to String conversion?

How to display an integer value in a UILabel in ViewDidLoad? I did for text and date and image but …

ios nsstring stringwithformat