day7---UI控件浏览

/*************** 1.分段选取器 ********************/
//参数数组里存放的是字符串(标题)或者图片
UISegmentedControl *segment = [[UISegmentedControl alloc] initWithItems:@[@"电视剧",@"电影",@"综艺",@"动漫"]];
segment.frame = CGRectMake(50, 100, screenBounds.size.width-100, 40);

//设置哪个分段处于选中状态
segment.selectedSegmentIndex = 0;

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

//设置内容渲染颜色
segment.tintColor = [UIColor redColor];
[self.view addSubview:segment];

/***************** 2.UISlider滑块*************/

UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(50, 200, screenBounds.size.width-100, 40)];
//设置最小值
slider.minimumValue = 1;
//设置最大值
slider.maximumValue = 10;
//设置当前显示的value
slider.value = 5;
//设置图片
slider.minimumValueImage = [UIImage imageNamed:@"1"];
slider.maximumValueImage = [UIImage imageNamed:@"2"];
[slider setThumbImage:[UIImage imageNamed:@"1"] forState:UIControlStateNormal];
//设置颜色

// slider.minimumTrackTintColor = [UIColor redColor];
// slider.maximumTrackTintColor = [UIColor blackColor];
// slider.thumbTintColor = [UIColor redColor];

[slider addTarget:self action:@selector(sliderValueChange:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:slider];


UIBarButtonItem *backItem = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:UIBarButtonItemStylePlain target:nil action:nil];
self.navigationItem.backBarButtonItem = backItem;

/********************3. UISwitch **************/
UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(150, 100, 10, 10)];
//设置开启状态
sw.on = YES;
//设置相关颜色
sw.onTintColor = [UIColor redColor];
sw.thumbTintColor = [UIColor greenColor];
sw.tintColor = [UIColor blackColor];
//设置圆角半径
sw.backgroundColor = [UIColor yellowColor];
sw.layer.cornerRadius = 15;
sw.layer.masksToBounds = YES;
//添加事件
[sw addTarget:self action:@selector(swValueChange:) forControlEvents:UIControlEventValueChanged];

[self.view addSubview:sw];

/***4. UIActivityIndicatorView等待加载符 *****/
UIActivityIndicatorView *activity = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
activity.center = self.view.center;
//让等待加载符 ,开始加载
// [activity startAnimating];
// activity.backgroundColor = [UIColor blackColor];
//停止加载
// [activity stopAnimating];
//设置颜色
activity.color = [UIColor blueColor];
activity.tag = 100;
[self.view addSubview:activity];

self.title = @"步进器和进度条";
/*********** 5.步进器 *************/
UIStepper *stepper = [[UIStepper alloc] initWithFrame:CGRectMake(100, 100, 1, 1)];
stepper.center = CGPointMake(screenBounds.size.width/2, 100);
//设置最小值
stepper.minimumValue = 0;
//设置最大值
stepper.maximumValue = 10;
//设置步长
stepper.stepValue = 1;
//添加事件
[stepper addTarget:self action:@selector(stepperValueChange:) forControlEvents:UIControlEventValueChanged];
//设置颜色
stepper.tintColor = [UIColor orangeColor];
[self.view addSubview:stepper];

/************ 6.进度条UIProgressView ********/
UIProgressView *progress = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];
progress.frame = CGRectMake(50, 200, screenBounds.size.width-100, 9);
//当前进度条的进度,范围(0-1之间)
progress.progress = 0;
//设置颜色
progress.progressTintColor = [UIColor redColor];
progress.tag = 100;
progress.trackTintColor = [UIColor whiteColor];

[self.view addSubview:progress];

//********************** 7.创建警告框
// UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"⚠️" message:@"您确定要自杀吗?" delegate:self cancelButtonTitle:@"NO" otherButtonTitles:@"YES",@"考虑一下",@"让我想会儿", nil];
//
// [alertView show];//显示出来

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"信息" message:@"请输入用户名和密码" delegate:self cancelButtonTitle:@"返回" otherButtonTitles:@"确定", nil];
//设置警告框的样式
alertView.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;
[alertView show];

//************************ 8.操作列表对象
-(void)creatAlerView{

// UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"⚠️" message:@"您确定要自杀吗?" delegate:self cancelButtonTitle:@"NO" otherButtonTitles:@"YES",@"考虑一下",@"让我想会儿", nil];
//
// [alertView show];//显示出来

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"信息" message:@"请输入用户名和密码" delegate:self cancelButtonTitle:@"返回" otherButtonTitles:@"确定", nil];
//设置警告框的样式
alertView.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;
[alertView show];

}

iOS8.0之后的警告框和操作列表对象
-(void)creatAlerView{
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"信息" message:@"请输入用户名和密码" preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"返回" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {
    NSLog(@"返回按钮被点击了");
}];

UIAlertAction *action2 = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    //打印出输入的用户名和密码的信息
    UITextField *field1 = [alert.textFields firstObject];
    UITextField *field2 = alert.textFields[1];
    NSLog(@"您输入的用户名是:%@ 密码是:%@",field1.text,field2.text);
    
}];

[alert addAction:action1];
[alert addAction:action2];

//为UIAlertController添加文本框
//可以向对话框添加任意数目的UITextField类型的对象,并且在Block语句里面使用所有的UITextField的属性
[alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
    textField.placeholder = @"请输入用户名:";
    textField.textColor = [UIColor redColor];
    textField.font = [UIFont systemFontOfSize:20];
    
}];
[alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
    textField.placeholder = @"请输入密码:";
    textField.secureTextEntry = YES;
    textField.font = [UIFont systemFontOfSize:20];
    
}];



[self presentViewController:alert animated:YES completion:nil];

}

-(void)creatActionSheet{

UIAlertController *sheet = [UIAlertController alertControllerWithTitle:nil message:@"分享" preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"微信分享" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
    NSLog(@"微信分享");
}];
UIAlertAction *action2 = [UIAlertAction actionWithTitle:@"QQ分享" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    NSLog(@"QQ分享");
}];
UIAlertAction *action3 = [UIAlertAction actionWithTitle:@"微博分享" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    NSLog(@"微博分享");
}];

UIAlertAction *action4 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
    NSLog(@"取消");
}];


[sheet addAction:action1];
[sheet addAction:action2];
[sheet addAction:action3];
[sheet addAction:action4];

[self presentViewController:sheet animated:YES completion:nil];

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • { 11、核心动画 需要签协议,但是系统帮签好 一、CABasicAnimation 1、创建基础动画对象 CAB...
    CYC666阅读 1,525评论 2 4
  • //准备工作 1.删除Main 2.ARC->MRC(YES->No) 3.删除文件(ViewConTroller...
    爱吃芒果的淼小猪阅读 384评论 1 1
  • 1.UILabel 1) label.frame //CGRectMake(x, y, width, he...
    青春flame阅读 627评论 0 2
  • 用法: 先添加指针视图,转盘背景和开始按钮。按钮的点击事件里设置开始动画,在动画开始的代理方法中让开始按钮不响应点...
    全栈的猫南北阅读 1,557评论 1 3
  • 孤独 1 外面是阳光明媚,山上的松树把白云当成了帽子,各种不同的形状镶嵌在树尾。太阳躲在山脚下安静的池塘里乘凉,闪...
    蒲公英的梦839阅读 264评论 0 2