我想在我的iOS应用中显示土耳其货币符号(TURKISH LIRA SIGN)。为此,我使用unicode作为" \ u20BA"。这在iOS 7中工作正常但是在iOS 6中没有显示符号,我看到正在绘制一个方框。这可能是什么问题?
我正在我的单元格上绘制符号,代码如下:
NSString *aFormattedPrice = [myDict stringForKey:@"formattedPrice"];
aCell.detailTextLabel.text = aFormattedPrice;
当我将NSLog放在aFormattedPrice上时,它会在控制台上正确打印,但单元格详细文本标签无法正确呈现它。