NSArray *array=@[@"红",@"黄",@"蓝"]; //数组中有多少元素,分段控制就有多少条目(分段) self.seg=[[UISegmentedControl alloc] initWithItems:array]; //选中某一个 self.seg.selectedSegme....
分类:
移动开发 时间:
2015-07-24 12:09:53
阅读次数:
185
self.slider=[[UISlider alloc]initWithFrame:CGRectMake(50, 100, 200, 50)];//self.slider.tintColor=[UIColor blueColor];//已经使用进度条颜色 //数值减小(球左边)颜色 self......
分类:
移动开发 时间:
2015-07-24 11:57:41
阅读次数:
224
直接上代码://UISegmentedControl 对象的创建
//参数为数组,数组为字符串数组,表示各个分段的标题,数组的对象个数确定了分段个数。
UISegmentedControl *segmentControl = [[UISegmentedControl alloc] initWithItems:@[@"黄色", @"红色", @"(~﹃~)~zZ", @"?"]];...
分类:
其他好文 时间:
2015-07-14 11:47:32
阅读次数:
84
直接上代码:/*
UISlider
*/ UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(30, 300, CGRectGetWidth(self.view.bounds)- 60, 30)];
//设置滑杆 的最小值
slider.minimumValue = 0;...
分类:
其他好文 时间:
2015-07-14 11:45:31
阅读次数:
124
//// ViewController.m// UI1_UISlider与UISegment//// Created by zhangxueming on 15/7/7.// Copyright (c) 2015年 zhangxueming. All rights reserved.//#i...
分类:
其他好文 时间:
2015-07-11 16:22:23
阅读次数:
99
UISegmentedControlUISegmentedControl 是iOS中的分段控件每个segment 都能被点击,相当于集成了若干个button.通常我们会点击不同的segment来切换不同的view.如图所示:在UISegmentedControl里面,有常用的方法和属性initWit...
分类:
其他好文 时间:
2015-07-11 12:01:55
阅读次数:
281
#pragma mark - 创建控件 UISlider
- (void)createSlider
{
// 也是继承与 UIControl
UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(40, 80, 260, 27)]; // 设置颜色
slider.backgroundColor = [...
分类:
其他好文 时间:
2015-07-06 19:50:35
阅读次数:
109
创建控件- (void)createSegmentControl
{
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"全部", @"分类", @"进行中"]];
segmentedControl.frame = CGRectMake(80, 30, 180, 30...
分类:
其他好文 时间:
2015-07-06 19:50:35
阅读次数:
98
UIButton主要功能:按钮控件,主要用于与用户操作进行交互常用属性及方法系统内建的按钮类型UIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetaiDislosureUIButtonTypeInfoLightUIButtonTypeContactAddUIButtonTypeRoundedRect系统中关于控件的状态类型UIControlState...
分类:
其他好文 时间:
2015-07-05 18:38:28
阅读次数:
141
//自定义UISlider的样式和滑块
//轨道图片
UIImage *stetchLeftTrack = [UIImage
imageNamed:@"thick"];
UIImage *stetchRightTrack = [UIImage
imageNamed:@"thick"];
//滑块图片
...
分类:
其他好文 时间:
2015-07-01 18:14:37
阅读次数:
100