Displaying Values In Strings

Boolean

	[NSString stringWithFormat:@"The value is: %d", MyBool]

(more…)

String Format Specifiers

http://developer.apple.com/iphone/library/documentation/cocoa/conceptual/Strings/Articles/formatSpecifiers.html

Using NSMutableString

Mutable vs. Immutable Strings

NSMutableString – Should be used when you are physically changing the value of an existing string, without completely discarding the old value (i.e. adding a character to the beginning or end, modifying a character in the middle etc).

(more…)

Using NSString

Mutable vs. Immutable Strings

NSMutableString – Should be used when you are physically changing the value of an existing string, without completely discarding the old value (i.e. adding a character to the beginning or end, modifying a character in the middle etc).

(more…)