我试图在 UIAlectAction 中放置两个 Unicode 符号。我应该有两个圆圈,一个是空的,另一个是满的。我目前的代码是:
NSString *unicodeStar = [NSString stringWithFormat:@"%C %C", 0x25CB,0x25CF];
UIAlertAction* star = [UIAlertAction
actionWithTitle:unicodeStar
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action)
{
[view dismissViewControllerAnimated:YES completion:nil];
}];
[view addAction:star];
根据Unicode 字符表,这两个符号应该具有相同的维度,但实际结果是:
所有其他圆圈具有相同的尺寸。我错过了什么?