Is there any way to convert an NSString to NSMutableString in Objective-C?
Asked
Active
Viewed 9,657 times
1 Answers
27
NSString *string = @"A string.";
NSMutableString *mutableString = [string mutableCopy];
SpacePyro
- 3,101
- 4
- 24
- 29