Extracting characters from an NSMutableString
How does one extract characters from a NSMu开发者_StackOverflow中文版tableString?
Is it the same as NSString?
[NSString stringWithFormat:@"%c.png", [someString characterAtIndex:0]]
Yes that should work fine. You can call any NSString method on a NSMutableString.
精彩评论