i have a problem with this particular NSString B and B . As you can see the encoding is different. So I am wondering if there is any 开发者_高级运维way to convert B to B so that the computer can standardize the character.
Does this work?
NSString *newString = [oldString stringByReplacingOccurrencesOfString:@"B" withString: @"B"];
精彩评论