gpt4 book ai didi

ios - 如何使用 iOS WatchKit 将 WKInterfaceButton 的标题文本居中

转载 作者:行者123 更新时间:2023-11-29 01:39:30 26 4
gpt4 key购买 nike

我试过这个:

[myWKButton.titleLabel setTextAlignment: NSTextAlignmentCenter];

我得到错误:

property titlelabel not found on object of type wkinterfacebutton

我怎样才能做到这一点?

最佳答案

WKInterfaceButton class没有 titleLabel 属性,这就是您收到此错误的原因。要设置标题的对齐方式,请使用其 attributedTitle 属性。

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.alignment = NSTextAlignmentCenter;

NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:yourTitle attributes:@{NSParagraphStyleAttributeName: paragraphStyle}];
[myWKButton setAttributedTitle:attributedString];

关于ios - 如何使用 iOS WatchKit 将 WKInterfaceButton 的标题文本居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32570376/

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