我必须在标签中显示SM(服务标记)符号。无论采用何种方式,它都会在设备上显示为®(已注册)符号。
我试过用一个字符串来做到这一点:
NSString *stringSM = [otherString stringByReplacingOccurrencesOfString:@"SM" withString:@"℠"];
使用unicode:
NSString *stringSM = [otherString stringByReplacingOccurrencesOfString:@"SM" withString:@"\u2120"];
其中otherString是从Web服务接收的字符串,包含其他信息,包括此SM符号。