UISegmentedControl UISlider


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)