Top "Nsstring" questions

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

What is the maximum length of an NSString object?

What is the maximum sized string that can be held in a NSString object? Does this change dynamically?

iphone objective-c xcode nsstring max
how to split strings in objective c

How to split a string in objective-C? I am working on an short application that contains a date picker. I …

iphone objective-c ios nsstring stringtokenizer
Change the text in a NSTextField programmatically?

I am used to doing this in Cocoa-touch, so I assumed it would be quite simple. I have already tried: …

cocoa macos nsstring nstextfield
Check if valid url so i can pass it to an NSURL?

I want to check if an NSString is a valid URL so I can parse it to an NSURL variable... …

objective-c nsstring nsurl
Generating a String from CLLocationDegrees, e.g. in NSLog or StringWithFormat

Hello Stacked-Experts! My question: How to generate a string from a CLLocationDegrees value? Failed attempts: 1. NSLog(@"Value: %f", currentLocation.coordinate.…

iphone objective-c cocoa-touch nsstring nslog
How to get all NSRange of a particular character in a NSString?

I have two NSStrings: orgText and searchLetter. I want to highlight every occurrences of the searchLetter in the orgText with …

ios objective-c nsstring nsrange
Check if an NSString is just made out of spaces

I want to check if a particular string is just made up of spaces. It could be any number of …

objective-c string cocoa-touch cocoa nsstring
Reliable way to compare two NSURL or one NSURL and an NSString?

I recently had a problem when comparing two NSURLs and compare one NSURL with an NSString(which is a URL …

objective-c uiwebview nsstring nsurl nsurlrequest
Convert NSCFString to NSString

I am getting a dictionary from server myDictionary = { "rank":"1", "color":"red", "position":"middle" } Now I want to check the value …

ios objective-c nsstring nscfstring
Append NSString to NSURL?

I have an NSURL, a file path, and I want to add an NSString to the end of it (the …

objective-c macos nsstring append nsurl