码迷,mamicode.com
首页 > 其他好文 > 详细

UISegmentedControl控件

时间:2014-08-06 21:55:22      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   color   for   ar   ad   ui   view   load   

用处:多分段选择控件,选中某个分段会触发值改变事件。

-(void)viewDidLoad

{

  [super viewDidLoad];

  NSArray* items = @[@"a",@"b",@"c"];

      self.seg = [[UISegmentedControl alloc]initWithItems:items];

      CGRect frame = CGRectMake(20,20,180,50);

      self.seg.frame = frame;

  //设置索引的标题

    [self.seg setTitle:@"two" forSegmentAtIndex:1];

  //设置默认选择器索引

  self.seg.selectedSegmentIndex = 1;

     //设置底色

  self.seg.tintColor = [UIColor redColor];

   //设置样式

  self.seg.segmentedControlStyle = UISegmentedControlStyleBar;

  

}

UISegmentedControl控件,布布扣,bubuko.com

UISegmentedControl控件

标签:style   color   for   ar   ad   ui   view   load   

原文地址:http://www.cnblogs.com/AngryCooder/p/3895279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!