How can I convert a NSMutable String into a regular NSString?
Asked
Active
Viewed 1.0k times
2 Answers
21
Try [NSString stringWithString: yourMutableString]

Jan
- 1,445
- 1
- 16
- 20
-
3An autoreleased one, at that. – bbum Dec 21 '10 at 09:04
-
the converted nsstring not works like below //[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlText]]; – user198725878 Dec 21 '10 at 09:05