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

UISegment

时间:2015-08-27 00:21:39      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

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

二、常用API

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

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

  3,selectedSegmentAtIndex //(property)被选中的segment

  4,tintColor //(property)segmentedControl条的颜?(含每个segment的颜?)

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

三、具体的使用步骤

    

UISegmentedControl *segment = [[UISegmentedControl alloc] initWithItems:@[@"全部商家", @"优惠商家", @"我的"]];

    // 最好用center

    segment.center = CGPointMake(100, 100);

    // 设置颜色

    [segment setTintColor:[UIColor redColor]];

    

    // 根据内容分配大小空间(默认是关闭的,即平均分配大小)

    segment.apportionsSegmentWidthsByContent = YES;

    

    // 默认显示某个内容

    segment.selectedSegmentIndex = 1;

   

    // 失去充满效果

    segment.momentary = YES;

    

    // segmentControl添加事件

    [segment addTarget:self action:@selector(haha:) forControlEvents:UIControlEventValueChanged];

    

    [self.view addSubview:segment];

    [segment release];

    

UISegment

标签:

原文地址:http://www.cnblogs.com/qiushifalife/p/4761942.html

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