目录
13.UIActivityIndicatorView(进度环)
11.UISegmentedControl(分段控件)
1.Style(风格)
Plain(最普通)、Bordered(加边框)、Bar(工具条风格)
2.State(高亮)
3.Segments(整数,控件总共被分为几段)
4.Segment(选择指定的分段)
5.Title(各分段设置标题)
6.Image(分段设置图片)
7.Behavior(是否可用)
self.sc = [[UISegmentedControl alloc]initWithFrame:CGRectMake(20, 100, 200, 50)];
self.sc = [self.sc initWithItems:@[@"选项一",@"选项二",@"增加",@"删除"]];
[self.sc addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:self.sc];
//方法
- (IBAction)segmentChanged:(id)sender {
switch ([sender selectedSegmentIndex]) {
case 0:
self.view.backgroundColor = [UIColor redColor];
break;
case 1:
self.view.backgroundColor = [UIColor grayColor];
break;
case 2:
[self.sc insertSegmentWithTitle:@"选项四" atIndex:4 animated:YES];
break;
case 3:
[self.sc removeSegmentAtIndex:3 animated:YES];
break;
default:
break;
}
}
12.UIProgressView(进度条)
直接继承UIView,作为静态控件,向yoghurt战士某个耗时操作完成的百分比,不会参与用户交互。
1.Style(风格)
Default(默认)、Bar(工具条风格)
2.Progress(设置完成比例)
3.Progress Tint(已经完成进度的颜色)
4.Track Tint(进度条轨道颜色)
5.Progress Image(已经完成部分的图片)
6.Track Image(进度条轨道图片)
//创建
UIProgressView *progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(50, 100, 250, 50)];
//背景颜色
progressView.backgroundColor = [UIColor grayColor];
//样式
progressView.progressViewStyle = UIProgressViewStyleBar;
//已完成进度颜色
progressView.progressTintColor = [UIColor greenColor];
//现在的进度
//_progressView.progress = 0.5;
//动画
[UIView animateWithDuration:5 animations:^{
[progressView setProgress:1 animated:YES];
} completion:^(BOOL finished){
if(finished) {
NSLog(@"完成任务....");
}
}];
//添加
[self.view addSubview:progressView];
13.UIActivityIndicatorView(进度环)
1.Style(风格)
Large White、White、Gray
2.Color(进度环颜色)
3.Behavior(控制进度环转动与隐藏)
UIActivityIndicatorView *aiv = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:(UIActivityIndicatorViewStyleMedium)];
[self.view addSubview:aiv];
//设置小菊花的frame
aiv.frame= CGRectMake(100, 100, 100, 100);
//设置小菊花颜色
aiv.color = [UIColor redColor];
//设置背景颜色
aiv.backgroundColor = [UIColor whiteColor];
//刚进入这个界面会显示控件,并且停止旋转也会显示,只是没有在转动而已,没有设置或者设置为YES的时候,刚进入页面不会显示
aiv.hidesWhenStopped = NO;
//开始转动
[aiv startAnimating];
//持续三秒
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 3.0 * NSEC_PER_SEC), dispatch_get_main_queue(), ^{
//结束转动
[aiv stopAnimating];
});
14.UISlider(拖动条)
self.slider = [[UISlider alloc]initWithFrame:CGRectMake(20, 60, self.view.frame.size.width - 40, 20)];
//设置当前slider的值,默认是0
self.slider.value = 0.5;
//已完成线条颜色
self.slider.minimumTrackTintColor = [UIColor greenColor];
//未完成部分线条颜色
self.slider.maximumTrackTintColor = [UIColor blackColor];
//滑块颜色
self.slider.thumbTintColor = [UIColor grayColor];
//添加事件
[self.slider addTarget:self action:@selector(valueChanged) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:self.slider];
//事件
- (void)valueChanged{
//滑动中随时改变透明度
[self.slider setAlpha:self.slider.value];
}
15.UIDatePicker(日期选择器)
1.Mode(模式)
Date(日期)、Time(时间)、Date and Time、Count Down Timer(倒计时器)
2.Locale(国际化)
3.Interval(两个时间之间的间隔)
4.Constraints(最小时间和最大时间)
5.Timer(剩下的描述,倒计时器有用)
//获取用户通过UIDatePicker设置的日期和时间
UIDatePicker *datePicker = [[UIDatePicker alloc] init];
//设置地区: zh-中国
datePicker.locale = [NSLocale loca