Talk:Copy a string

Revision as of 01:26, 18 November 2009 by rosettacode>Blue Prawn (isn't there an error in Objective-C example ?)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Objective-C Example

Well I don't know Objective-C, but looking at the examples isn't there an error on this line: <lang objc>NSString *newMutable = [original mutableCopy];</lang> shoudn't it be this below ? <lang objc>NSMutableString *newMutable = [original mutableCopy];</lang>

Return to "Copy a string" page.