I was using segmented controls inside alert views for quick user insert data, but in ios 7 the segmented control doesn't appears! Is it forbidden ? My code ..
UISegmentedControl *segControl = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"2", @"3", @"4", @"5",@"6", @"7",@"8", @"9",nil]];
segControl.selectedSegmentIndex = 2;
[myAlertView addSubview:segConTimes];
I tried ...
[segConTimes setTintColor:[UIColor blackColor]];
But it still doesn't appear. Anyone knows how to do it ?