5

以下是初始化我的UISegmentedControl.

- (void)initializeToolButtons
{
    NSArray *buttonTitles = [NSArray arrayWithObjects:@"ANNEXET", @"HOVET", @"GLOBEN", "ALL", nil];

    toolbuttons = [[UISegmentedControl alloc] initWithItems:buttonTitles];
    toolbuttons.segmentedControlStyle = UISegmentedControlStyleBar;
    toolbuttons.tintColor = [UIColor darkGrayColor];
    toolbuttons.backgroundColor = [UIColor blackColor];     
    toolbuttons.frame = CGRectMake(0, 0, 320, 30);

    [toolbuttons addTarget:self action:@selector(toolButtonsAction) forControlEvents:UIControlEventValueChanged];

    [self.view addSubview:toolbuttons];
}

如何减小 上每个项目的字体大小UISegmentedControl

注意: toolButtons已在全球范围内声明。

4

2 回答 2

13

很简单:

UIFont *Boldfont = [UIFont boldSystemFontOfSize:16.0f];
    NSDictionary *attributes = [NSDictionary dictionaryWithObject:Boldfont forKey:UITextAttributeFont];
    [segment setTitleTextAttributes:attributes forState:UIControlStateNormal];
于 2012-10-12T07:07:43.837 回答
3

考虑重新设计您的界面或使用具有较小字体的“标签”样式。乱用未公开的属性可能会导致您的应用程序被拒绝或破坏您的应用程序,如果它们改变了引擎盖下的某些内容。

例如,给出的代码示例不起作用。当您点击一个段时,该段的字体会重置为其正常大小。如果你做的事情偏离了这些东西的正常使用,任何不可预知的事情都可能在你的应用程序中发生或改变。因此,如果您想要一个可以在后续操作系统更新中继续工作的应用程序,请坚持使用标准内容,或者使用 UIButtons 和矩形背景图像制作您自己的控件。hack 现在可能会起作用,但并不是说将来会起作用。

于 2011-06-01T11:44:08.270 回答