NSArray *array=@[@"红",@"黄",@"蓝"];
//数组中有多少元素,分段控制就有多少条目(分段)
self.seg=[[UISegmentedControl alloc] initWithItems:array];
//选中某一个
self.seg.selectedSegmentIndex=0;
self.seg.tintColor=[UIColor redColor];//改变边框及选中视图字体颜色
self.seg.backgroundColor=[UIColor yellowColor];//改变未选中视图颜色(背景颜色)
self.seg.frame=CGRectMake(50, 100, 200, 50);
[self addSubview:self.seg];