如何在标签中获取Map Annotation标题样式/字体

时间:2013-01-30 04:46:15

标签: iphone ios xcode map

任何人都可以告诉我如何在UIlabel enter image description here

中获取地图注释标题的字体/样式

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

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

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

1 个答案:

答案 0 :(得分:1)

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

也可以使用阴影设置。

[name setShadowColor:[UIColor blackColor]];
[name setShadowOffset:CGSizeMake(0, -1)];