任何人都可以告诉我如何在UIlabel
中获取地图注释标题的字体/样式我想要标签中的确切样式/字体..
UILabel *name = [[UILabel alloc]init];
name.text = @"Hello Annotation";
name.textColor = [UIColor whiteColor];
[name setFont: [UIFont fontWithName:@"Helvetica" size:20.0]];
我还需要包含什么才能获得注释标题的确切样式?
答案 0 :(得分:1)
试
[name setFont: [UIFont boldSystemFontOfSize:20.0]];
也可以使用阴影设置。
[name setShadowColor:[UIColor blackColor]];
[name setShadowOffset:CGSizeMake(0, -1)];