转载

UI基础:UIControl及其子类

UISegmentedControl 是iOS中的分段控件

每个segment 都能被点击,相当于集成了若干个button.

通常我们会点击不同的segment来切换不同的view.

如图所示:

UI基础:UIControl及其子类

在UISegmentedControl里面,有常用的方法和属性

initWithItems:            //UISegmentedControl独有的初始化方法,用来创建多个分段

setTitle: forSegmentAtIndex:                //为指定下标的分段设置title

addTarget: action: forControlEvents:           //给UISegmentedControl 添加事件,controlEvent 为UIControlEventValueChanged

selectedSegmentAtIndex                 //(property)被选中的segment

tintColor                          //(property)segmentedControl条的颜色(含每个segment的颜色)

UISlider

UISlider 是iOS中的滑块控件

通常用于控制视频播放速度,控制音量等.

它也是继承于UIControl,滑块提供了一系列连续的值,当滑块停在不同的位置,就可以获得相应位置滑块上的值.

其效果如图:

UI基础:UIControl及其子类 UI基础:UIControl及其子类

UIslider常用的属性:

正文到此结束
Loading...