减小 MKPinAnnotation 中标题的大小

发布于 2024-12-02 13:39:41 字数 59 浏览 0 评论 0原文

我有一个地图视图,带有 NSString* 注释的标题和副标题,我想知道是否有任何方法可以更改字体大小。

I have a mapview, with a title and a subtitle for my annotations which are NSString* and I'd like to know if there's any way to change the font size.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫罗兰の梦幻 2024-12-09 13:39:41

在字符串对象上无法编辑字体,您应该尝试使用 UILabel。看一下这段代码:

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 50)];
label.text = yourString; //You can also use @"string" instead of an NSString
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.font = [UIFont fontWithName:@"Helvetica-Oblique" size:(12.0)]; //Font ;)
label.backgroundColor = [UIColor clearColor];

正如您所看到的,有一个属性可以设置字体,请查看该站点的字体列表: http:// /iosfonts.com/

On a String Object there is no way to edit font, you should try to use a UILabel. Look at this code:

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 50)];
label.text = yourString; //You can also use @"string" instead of an NSString
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.font = [UIFont fontWithName:@"Helvetica-Oblique" size:(12.0)]; //Font ;)
label.backgroundColor = [UIColor clearColor];

As you can see there is a property to set the font, fot a list of font look that site: http://iosfonts.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文