汇总
滑动条控件.步进控件.开关控件.选项卡控件
UISlider
滑动条
//1.UISlider滑块控件
UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(70, 100,180, 40)];
//2.设置滑块滑动到的位置默认值为0.0 float类型(1.0或者1.0f)
//最小值,默认为0
slider.minimumValue =0.0
//最大值,默认为1
slider.maximumValue =100.0
// 设置当前值
slider.value= 1.0;
//是否连续,默认为YES
//slider.continuous = NO;
//设置背景颜色
slider.backgroundColor= [UIColor redColor];
//设置透明度
slider.alpha= 0.5;
//对图层切边,以下两个属性必须同时设置:cornerRadius和masksToBounds要一起用
slider.layer.cornerRadius= 8;
slider.layer.masksToBounds=YES;
//设置控件空显示值的颜色
slider.tintColor= [UIColor yellowColor];
slider.maximumTrackTintColor= UIColor.greenColor()
slider.minimumTrackTintColor= UIColor.magentaColor()
slider.thumbTintColor= UIColor.blackColor()
//3.绑定触发事件事件类型:值改变(valuechange),带参数
[slider addTarget:self action:@selector(sliderAction:) forControlEvents:UIControlEventValueChanged];
//设置最大值处的图像
slider.maximumValueImage=@"6.jpg";
//设置最小值处的图像
slider.minimumValueImage=@"5.jpg";
//4.加到当前屏幕上
[self.view addSubview:slider];
UIStepper
步进控件
//UIStepper计数控件
UIStepper *step = [[UIStepper alloc] initWithFrame:CGRectMake(125, 100, 100, 35)];
//是否连续,默认为YES.若设置为YES,则长按会连续触发变化,若设置为NO,只有在按击结束后,才会触发。
//step.continuous = NO;
//设置长按是否一直触发变化.若设置为YES,则长按值会一直改变,若设置为NO,则一次点击只会改变一次值
//step.autorepeat = NO;
//设置颜色
step.tintColor= [UIColor redColor];
//一次增加多少
step.stepValue= 2;
//到10就加不上去并且按钮变高亮状态
step.maximumValue= 10;
//从10往上加并且=<10按钮变高亮状态
//step.minimumValue = 10;
//设置为YES就表示当计数值达到限定值,会从相应的最值开始循环.默认为NO,不设最值时默认起点为0,不能为负值(设置控制器的值是否循环(到达边界后,重头开始,默认为NO))
step.wraps=YES;
//需要通过step对象的value属性得到这个数值所以需要传参事件类型要注意:值改变类型(ValueChanged
[step addTarget:self action:@selector(stepAction:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:step];
UISwitch
开关控件
//系统固定大小
UISwitch *switch= [[UISwitch alloc] initWithFrame:CGRectMake(10, 10, 10, 10)];
//设置UISwitch的初始化状态.设置初始为ON的一边
switch.on =YES;
//switchAction:冒号表示传参
[switch addTarget:self action:@selector(switchAction:) forControlEvents:UIControlEventTouchUpInside];
- (void)switchAction:(UISwitch*)switch {
if(switch.on) {
NSLog(@"打开状态");
}else{
NSLog(@"关闭");
}
}
UISegmentedControl
选项卡控件
//UISegmentedControl 选项卡控件.segment分割
NSArray *arr = [NSArray arrayWithObjects: @"1",@"2",@"3",nil];
UISegmentedControl *sc = [[UISegmentedControl alloc] initWithItems:arr];
//sc.backgroundColor = [UIColor redColor];
sc.frame=CGRectMake(0, 0,100, 30);
//设置默认选择项索引.写默认关闭的行为.
sc.selectedSegmentIndex= 0;
//设置在点击后是否恢复原样
sc.momentary = YES;
//设置指定索引的题目
[sc setTitle:@"two" forSegmentAtIndex:1];
//设置指定索引的图片
[sc setImage:[UIImage imageNamed:@"6.png"] forSegmentAtIndex:3];
sc.tintColor = [UIColor redColor];
//设置样式,4种
sc.segmentedControlStyle = UISegmentedControlStyleBordered;
[sc addTarget:self action:@selector(SegmentControlAction:) forControlEvents:UIControlEventValueChanged];
-(void)SegmentControlAction:(UISegmentedControl*)sc {
//switch语句又称作开关语句当case :常量表达式时会执行相应的方法{}
switch(sc.selectedSegmentIndex) {
case 0:
NSLog(@"消息");
break;
case 1:
NSLog(@"电话");
break;
case 2:
NSLog(@"视频");
break;
default:
break;
}
}