我在警报视图中使用分段控件来快速插入用户数据,但在 ios 7 中分段控件没有出现!是禁止的吗?我的代码..
UISegmentedControl *segControl = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"2", @"3", @"4", @"5",@"6", @"7",@"8", @"9",nil]];
segControl.selectedSegmentIndex = 2;
[myAlertView addSubview:segConTimes];
我试过 ...
[segConTimes setTintColor:[UIColor blackColor]];
但它仍然没有出现。任何人都知道该怎么做?