gpt4 book ai didi

objective-c - 如何以编程方式设置 WKInterfaceButton 字体?

转载 作者:行者123 更新时间:2023-11-28 05:29:41 26 4
gpt4 key购买 nike

目前我可以通过 Storyboard调整字体类型和大小。但是,我想针对不同的场景以编程方式设置 WKInterfaceButton 字体。

最佳答案

你可以通过 NSAttributedString 做到这一点

UIFont * buttonFont = [UIFont fontWithName:@"Courier-Bold" size:6];
NSAttributedString *buttonText = [[NSAttributedString alloc] initWithString : @"Your button title" attributes : @{ NSKernAttributeName : @2.0, NSFontAttributeName : buttonFont}];
[self.button setAttributedTitle:buttonText];

关于objective-c - 如何以编程方式设置 WKInterfaceButton 字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29272904/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com