Is there any way to convert an NSString to NSMutableString in Objective-C?
Asked
Active
Viewed 1.0k times
1 Answers
28
NSString *string = @"A string.";
NSMutableString *mutableString = [string mutableCopy];

SpacePyro
- 3,121
- 4
- 25
- 30