NSString is the plain-text character-string class in Cocoa and Cocoa Touch. See also NSMutableString, NSData and NSMutableData (for objects that contain bytes rather than human-language characters), and NSAttributedString and NSMutableAttributedString (for rich-text strings).

learn more… | top users | synonyms

71
votes
6answers
60k views

How to convert an NSString into an NSNumber

How can I convert an NSString containing a number of any primitive data type (e.g. int, float, char, unsigned int, etc.)? The problem is, I don't know which number type the string will contains at ...
38
votes
2answers
22k views

Convert UTF-8 encoded NSData to NSString

I have UTF-8 encoded nsdata from windows server. I want to convert it to nsstring for iphone. Since data contains characters(like degree symbol) which have different values on both platforms, how do I ...
38
votes
10answers
26k views

How can I strip all the whitespaces from a string in Objective-C?

Consider the following example: " Hello this is a long string! " I want to convert that to: "Hello this is a long string!"
34
votes
9answers
40k views

Objective-C: Reading a file line by line

What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
26
votes
2answers
20k views

AES Encryption for an NSString on the iPhone

Can anybody point me in the right direction to be able to encrypt a string, returning another string with the encrypted data? (I've been trying with AES256 encryption.) I want to write a method which ...
22
votes
6answers
24k views

objective c 101 (retain vs assign) NSString

A 101 question Let's say i'm making database of cars and each car object is defined as: #import <UIKit/UIKit.h> @interface Car:NSObject{ NSString *name; } @property(nonatomic, retain) ...
20
votes
3answers
77k views

NSDate and NSDateFormatter - short format date and time in iphone sdk

searched for answers, but the one's i found didn't seem to be ipone specific. I basically need to get current date and time separately, formatted as: 2009-04-26 11:06:54 edit: The code ...
19
votes
4answers
49k views

Convert NSDate to NSString

How do I convert an NSDate to an NSString so that only the year in @"yyyy" format is output to the string?
18
votes
5answers
561 views

Why is this program faster in Python than Objective-C?

I got interested in this small example of an algorithm in Python for looping through a large word list. I am writing a few "tools" that will allow my to slice a Objective-C string or array in a ...
17
votes
8answers
18k views

iPhone how to check that a string is numeric only

How do I validate the string input from a UITextField? I want to check that the string is numeric, including decimal points.
16
votes
6answers
403 views

How to validate the empty string in Objective C?

I want to validate the string value after getting in the below parser delegate method I have tried like [string length]>0 ,(string !=NULL) in if condition still blank string is printed in the ...
15
votes
6answers
9k views

How to check if NSString begins with a certain character

How do you check if an NSString begins with a certain character (the character *). The * is an indicator for the type of the cell, so I need the contents of this NSString without the *, but need to ...
13
votes
1answer
4k views

Detecting if an NSString contains…?

How can I detect if a string contains a certain word? For example, I have a string below which reads: @"Here is my string." I'd like to know if I can detect a word in the string, such as, "is" for ...
13
votes
6answers
20k views

BOOL to NSString

If I have a method that returns a BOOL, how do I cast that to a NSString so I can print it out with an NSLog? For example,I tried doing this, which isn't working: NSLog(@"Is Kind of NSString:", ...
12
votes
3answers
402 views

Why does NSString respond to appendString?

I was playing with the respondsToSelector method in Objective-C on MacOS-X 10.6.7 and Xcode 4.0.2, to identify if an object would respond to certain messages. According to the manuals, NSString should ...
12
votes
3answers
3k views

Strip Non-Alphanumeric Characters from an NSString

I'm looking for a quick and easy way to strip non-alphanumeric characters from an NSString. Probably something using an NSCharacterSet, but I'm tired and nothing seems to return a string containing ...
12
votes
2answers
18k views

NSString to NSDate

I got a string that contains the current date by using this : NSString *date = [[NSDate date] description]; At a different point I want to retrieve the date from this string and I used the ...
12
votes
8answers
7k views

Remove all but numbers from NSString

I have an NSString (phone number) with some parenthesis and hyphens as some phone numbers are formatted. How would I remove all characters except numbers from the string?
12
votes
2answers
19k views

How to declare a two dimensional array of string type in Objective-C?

How do I declare a two dimensional array of string type in Objective-C?
11
votes
2answers
13k views

Convert NSArray to NSString in Objective-C

I am wondering how to convert an NSArray example: ( [43,545,@"Test"] ) to a string in objective-c. An applescript example might be: set the_array to {43,"Testing", 474343} set the_array to the_array ...
11
votes
1answer
2k views

How to “pass on” a variable number of arguments to NSString's +stringWithFormat:

I would like to write a function in Objective-C such as the one below, that takes a variable number of arguments, and passes those arguments on to +stringWithFormat:. I know about vsnprintf, but that ...
10
votes
4answers
2k views

static NSString usage vs. inline NSString constants

In Objective-C, my understanding is that the directive @"foo" defines a constant NSString. If I use @"foo" in multiple places, the same immutable NSString object is referenced. Why do I see this code ...
10
votes
3answers
19k views

Remove character from NSString in iPhone programming?

NSString *myString = @"A B C D E F G"; I want to remove the spaces, and get a string out like "ABCDEFG". Please help me... Thanks and regards
9
votes
1answer
153 views

Objective C - Replacing portion of string in NSString?

I am using the following code to replace a portion of the string, this works for normal characters (alphabetical characters) but when it comes to symbols like "•" it can't replace the character. Any ...
9
votes
4answers
477 views

Check for an empty string

I have a little question. Seems easy but I don't get it working. All I want is check if a string is empty or not. Here's what I have so far: if(mystring.text != @""){ myPath = [myPath ...
9
votes
3answers
7k views

NSString with \n or line break

Does anyone know how to use line breaks in NSString? I need to do something like this - [NSString stringWithFormat:@"%@,\n%@", mystring1,mystring2];
9
votes
3answers
4k views

How to find a string in an NSArray?

This feels like such a stupid question, but how can I find a string in an NSArray? I tried using [array indexOfObjectIdenticalTo:myString] but that requires the sting to have the same address. ...
9
votes
7answers
10k views

How to create a NSString from a format string like @“xxx=%@, yyy=%@” and a NSArray of objects?

Is there any way to create a new NSString from a format string like @"xxx=%@, yyy=%@" and a NSArray of objects? In the NSSTring class there are many methods like: - (id)initWithFormat:(NSString ...
9
votes
3answers
11k views

Remove newline character from first line of NSString

How can I remove the first \n character from an NSString? Edit: Just to clarify, what I would like to do is: If the first line of the string contains a \n character, delete it else do nothing. ie: ...
9
votes
2answers
9k views

NSString is integer?

How to check if the content of a NSString is an integer value? Is there any readily available way? There got to be some better way then doing something like this: - (BOOL)isInteger:(NSString ...
8
votes
6answers
135 views

Why does [NSMutableString stringWithString:@“”] work?

Just wondering: In NSString there is a static method called +stringWithString:. This is not redeclared/overridden in NSMutableString so we cannot assume that this will return an NSMutableString. In ...
8
votes
3answers
166 views

NSString format problem

I am working with the Google Place API and got a successful JSON response. But one NSString is L\U00c3\U00b6wenbr\U00c3\U00a4u Keller. I want to convert it into a proper NSString like Lowenbrau ...
8
votes
2answers
328 views

NSString unique file path to avoid name collisions

Is there a simple way to take a given file path and modify it in order to avoid name collisions? Something like: [StringUtils stringToAvoidNameCollisionForPath:path]; that for a given path of type: ...
8
votes
3answers
4k views

Multiline UILabel with adjustsFontSizeToFitWidth

I have a multiline UILabel whose font size I'd like to adjust depending on the text length. The whole text should fit into the label's frame without truncating it. Unfortunately, according to the ...
8
votes
3answers
4k views

How to convert std::string to NSString?

Hi I am trying to convert a standard std::string into a NSString but i'm not having much luck I can convert successfully from an NSString to a std::string with the following code NSString *realm = ...
8
votes
2answers
4k views

How do I use the NSString draw functionality to create a UIImage from text

I have an NSString that I would like to draw it's contents to a UIImage but have absolutely NO idea how I would go about doing this. I need to call a method that I give it an NSString and returns a ...
8
votes
1answer
8k views

Converting File Path From NSString To NSURL

I'm working through Cocoa smoothly, but this problem seems so basic it cancels out all the cool stuff I learned. :/ I have a generated file path, and it needs to be in NSURL format. From research, ...
8
votes
4answers
2k views

How to make an NSString path (file name) safe

I'm using very tricky fighting methods :) to make a string like 'Fi?le*/ Name' safe for using as a file name like 'File_Name'. I'm sure there is a cocoa way to convert it. And I'm sure the best place ...
8
votes
3answers
2k views

Separate NSArray to a list of NSString type objects

A UIActionSheet is initalized with: UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil ...
8
votes
6answers
6k views

NSString: Number of Occurrences of a Character?

I have an NSString and would like to get the number of occurrences of a particular character. I need to do this for quite a few characters, so it would be nice for it to be quick. In case it makes ...
7
votes
8answers
219 views

UILabel - string as text and links

I have a UILabel whose text I am getting from a server. Some of the text is to be identified as links, and on touching those links some action should be performed. e.g. NSString *str = @"My phone ...
7
votes
2answers
287 views

Sort NSArray of NSStrings like Addressbook on iphone sort

I have an array of strings (names) and i would like to sort them like how the address book on the iphone sorts them eg: éli -> under E eg: àli -> under A eg: 4li -> under # any suggestions?
7
votes
3answers
193 views

Obj-C: [NSString stringWithString:@“string”] vs. @“string”

I've seen people do something like [NSString stringWithString:@"some string"]. Why not just do @"some string"? For an example, look at the facebook-ios-sdk. NSString stringWithString - what's ...
7
votes
7answers
942 views

Count the number of words in NSString

I'm trying to implement a word count function for my app that uses UITextView. There's a space between two words in English, so it's really easy to count the number of words in an English sentence. ...
7
votes
3answers
453 views

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 do display date get it from date picker and display it through a label. My main question is ...
7
votes
3answers
3k views

Resulting lines of UILabel with UILineBreakModeWordWrap

I have a UILabel whose size is calculated with sizeWithFont: method. The line break mode is set to UILineBreakModeWordWrap (same flag is used when calculating the size with sizeWithFont:)... ...
7
votes
2answers
5k views

How to get the size of a NSString

A "quicky": how can I get the size (width) of a NSString? I'm trying to see if the string width of a string to see if it is bigger than a given width of screen, case in which I have to "crop" it and ...
7
votes
3answers
9k views

NSData to display as a string

this is my first post. I am building an iPhone app and stuck with the following: unsigned char hashedChars[32]; CC_SHA256([inputString UTF8String], [inputString ...
7
votes
3answers
3k views

How to add commas to number every 3 digits in Objective C?

If I have a number int aNum = 2000000 how do I format this so that I can display it as the NSString 2,000,000?
7
votes
3answers
11k views

Search through NSArray for string

I would like to search through my NSArray for a certain string. Example: NSArray has the objects: "dog", "cat", "fat dog", "thing", "another thing", "heck here's another thing" I want to search for ...

1 2 3 4 5 44