1

谁能告诉我如何在 UIlabel 中获取地图注释标题的字体/样式在此处输入图像描述

我想要标签中的确切样式/字体..

        UILabel *name = [[UILabel alloc]init];
        name.text = @"Hello Annotation";
        name.textColor = [UIColor whiteColor];
       [name setFont: [UIFont fontWithName:@"Helvetica" size:20.0]];

我还需要包括什么才能获得注释标题的确切样式?

4

1 回答 1

1

尝试

 [name setFont: [UIFont boldSystemFontOfSize:20.0]];

也玩阴影设置。

[name setShadowColor:[UIColor blackColor]];
[name setShadowOffset:CGSizeMake(0, -1)];
于 2013-01-30T04:54:43.600 回答