博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIKit 框架之UIProgressView
阅读量:6286 次
发布时间:2019-06-22

本文共 1666 字,大约阅读时间需要 5 分钟。

////  ViewController.m//  UIProgressView////  Created by City--Online on 15/5/18.//  Copyright (c) 2015年 XQB. All rights reserved.// #import "ViewController.h" @interface ViewController ()@property(nonatomic,strong) UIProgressView *progress;@property(nonatomic,strong) NSTimer *timer;@end @implementation ViewController - (void)viewDidLoad {    [super viewDidLoad];    //设置的高度对进度条的高度没影响,整个高度=进度条的高度,进度条也是个圆角矩形    //但slider滑动控件:设置的高度对slider也没影响,但整个高度=设置的高度,可以设置背景来检验     _progress=[[UIProgressView alloc]initWithFrame:CGRectMake(20, 200, 300, 10)];//    typedef NS_ENUM(NSInteger, UIProgressViewStyle) {//        UIProgressViewStyleDefault,     // normal progress bar//        UIProgressViewStyleBar,         // for use in a toolbar//    };    //两种几乎无区别    _progress.progressViewStyle=UIProgressViewStyleDefault;    //进度颜色//    _progress.progressTintColor=[UIColor redColor];//    //背景色//    _progress.backgroundColor=[UIColor blueColor];//    //进度条颜色//    _progress.trackTintColor=[UIColor yellowColor];    //进度的背景图片    _progress.progressImage=[UIImage imageNamed:@"2.jpg"];    //进度条的背景图片    _progress.trackImage=[UIImage imageNamed:@"1.jpg"];    [self.view addSubview:_progress];    _timer=[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(btnClick:) userInfo:nil repeats:YES];    [_timer fire];}-(void)btnClick:(UIButton *)sender{    if (_progress.progress<0.95) {        _progress.progress+=0.05;     }    else    {        [_timer invalidate];    }     } - (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.} @end

 设置的progressImage、trackImage属性不起作用,网上搜了好多,说是IOS7之后没有效果

转载地址:http://nkrva.baihongyu.com/

你可能感兴趣的文章
PHP字符编码转换类3
查看>>
rsync同步服务配置手记
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
webpack4+babel7+eslint+editorconfig+react-hot-loader 搭建react开发环境
查看>>
Maven 插件
查看>>
初探Angular6.x---进入用户编辑模块
查看>>
计算机基础知识复习
查看>>
【前端词典】实现 Canvas 下雪背景引发的性能思考
查看>>
大佬是怎么思考设计MySQL优化方案的?
查看>>
<三体> 给岁月以文明, 给时光以生命
查看>>
Android开发 - 掌握ConstraintLayout(九)分组(Group)
查看>>
springboot+logback日志异步数据库
查看>>
Typescript教程之函数
查看>>
Android 高效安全加载图片
查看>>
vue中数组变动不被监测问题
查看>>