在我的UISegmentedControl中,我希望显示图标而不是文本。
我无法找到这些图标的高度应该是什么。我更愿意提供适当大小的图标,而不是让操作系统为我调整大小。
所以,在致电
时[[UISegmentedControl alloc] initWithItems:@[icon1, icon2]];
这些图标的尺寸应该是多少?
答案 0 :(得分:0)
您可以为细分控件提供更大的框架。
UISegmentedControl *test = [[UISegmentedControl alloc] initWithItems:[@icon1, @icon2]];
test.frame = CGRectMake(90, 90, 200, 80);
test.backgroundColor = [UIColor blueColor];
[self.view addSubview:test];
items数组应该是图像数组。