gpt4 book ai didi

ios - 如何在iOS中完成显示分段控件的文本?

转载 作者:行者123 更新时间:2023-12-01 16:09:16 24 4
gpt4 key购买 nike

我正在使用 iOS 进行开发。我尝试使用 Segmented Control , 但 Segmented Control 的文本太长了,如下图:

enter image description here

有什么方法可以显示Segmented Control中的所有文本吗? ?

最佳答案

第一种方式:将字体大小更改为可容纳在段中的较小大小

UIFont *font = [UIFont boldSystemFontOfSize:12.0f];
NSDictionary *attributes = [NSDictionary dictionaryWithObject:font
forKey:NSFontAttributeName];
[segmentedControl setTitleTextAttributes:attributes
forState:UIControlStateNormal];

第二种方式:根据文本设置段的宽度。 (感谢 the_UB 的评论)

请引用 How can I calculate correct widths for UISegmentedControl segments?

第三种方式:尝试使用像段这样的可滚动控件

请引用: https://www.cocoacontrols.com/controls/carbonkithttps://www.cocoacontrols.com/controls/pagingmenucontroller

关于ios - 如何在iOS中完成显示分段控件的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34743861/

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