I'm trying to place two Unicode symbols inside an UIAlectAction. I should have two circles, one empty and the other one filled. My current code is:
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];
According to the Unicode Character Table this two symbol should have the same dimension but the actual result is:
All the other circles have the same dimension. What am I missing?