Ios SM字符串替换为®;iPad设备上的符号

Ios SM字符串替换为®;iPad设备上的符号,ios,ipad,ios4,ios-4.2,Ios,Ipad,Ios4,Ios 4.2,我必须在标签上显示SM(服务标志)符号。无论我采用何种方式,它都会在设备上显示为®(已注册)符号 我试着用一个字符串来实现这一点: NSString *stringSM = [otherString stringByReplacingOccurrencesOfString:@"SM" withString:@"℠"]; 以及使用unicode: NSString *stringSM = [otherString stringByReplacingOccurrencesOfString:@"

我必须在标签上显示SM(服务标志)符号。无论我采用何种方式,它都会在设备上显示为®(已注册)符号

我试着用一个字符串来实现这一点:

NSString *stringSM =  [otherString stringByReplacingOccurrencesOfString:@"SM" withString:@"℠"];
以及使用unicode:

NSString *stringSM =  [otherString stringByReplacingOccurrencesOfString:@"SM" withString:@"\u2120"];
其中,otherString是从web服务接收的字符串,包含包括此SM符号在内的其他信息