gpt4 book ai didi

iphone - UILabel 中的文本居中

转载 作者:IT老高 更新时间:2023-10-28 11:23:48 29 4
gpt4 key购买 nike

如何将 UILabel 中的文本居中?

最佳答案

代码是

[yourLabel setTextAlignment:UITextAlignmentCenter];

或者(当然)Obj-C 2.0 点语法

yourLabel.textAlignment = UITextAlignmentCenter;

对于 iOS 6(及更高版本),您应该使用 NSTextAlignmentCenter 而不是 UITextAlignmentCenter:

yourLabel.textAlignment = NSTextAlignmentCenter;

Source

如果你想向后兼容 iOS 5,你也可以这样做,

#ifdef __IPHONE_6_0
# define ALIGN_CENTER NSTextAlignmentCenter
#else
# define ALIGN_CENTER UITextAlignmentCenter
#endif

swift 3

yourLabel.textAlignment = .center

关于iphone - UILabel 中的文本居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3743904/

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