How do I declare a simple string "test" to a variable?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||||||
|
|
A C string is just like in C.
An NSString uses the
If you need to manage the NSString's memory:
Or if you need an editable string:
You can read more from the Apple NSString documentation. |
|||||||||||||
|
|
Standard string assignment can be done like so:
In addition to the basic allocation there are a whole lot of methods you get when using the NSString Class that you don't get with the Standard Char[] array. That is why Objective programming is better! For instance filling a string with the contents of a html webpage, with a single line of code!** Creating and Initializing Strings
Creating and Initializing a String from a File
Creating and Initializing a String from an URL
If you need a string where you can edit its buffer you want to look at:
|
||||
|
|