UISegmentedControl UISlider 分类: UI 2014-09-19 16:02 7人阅读 评论(0) 收藏


UISegmentedControl 是iOS中的分段控件,其实就是多个button的组合视图,通过切换不同的segment(点击不同的button),响应不同操作
    

    NSArray * titles = @[@"轻拍",@"长按",@"轻扫",@"平移"];
    

    UISegmentedControl * segmentControl = [[UISegmentedControl alloc]initWithItems:titles];


设置默认选中的分段

   segmentControl.selectedSegmentIndex = 0 ;

  


给segmentControl添加响应事件

   [segmentControl addTarget:self action:@selector(handSegmentControl:) forControlEvents:UIControlEventValueChanged]; //根据值的改变区分

   







版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(UISegmentedControl UISlider 分类: UI 2014-09-19 16:02 7人阅读 评论(0) 收藏)