UIProgressView进度条

UIProgressView顾名思义用来显示进度的,如音乐,视频的播放进度,和文件的上传下载进度等。

下面以一个简单的实例来介绍UIprogressView的使用。

@interface ActivityViewController : UIViewController

{

UIProgressView *proView;

double proValue;

NSTimer *timer;

}

@property(nonatomic, retain)  UIProgressView *proView;

-(IBAction)btnStartClick;

@implementation ActivityViewController

@synthesize proView;

#pragma mark - View lifecycle

-(IBAction)btnStartClick

{

proValue=0;

timer = [NSTimerscheduledTimerWithTimeInterval:1target:selfselector:@selector(changeProgress) userInfo:nilrepeats:YES]; //利用计时器,每隔1秒调用一次(changeProgress)

}

-(void)changeProgress

{

proValue += 1.0; //改变proValue的值

if(proValue > 5)

{

//停用计时器

[timer invalidate];

}

else

{

[proViewsetProgress:(proValue / 5)];//重置进度条

}

}

- (void)viewDidLoad

{

proView = [[UIProgressViewalloc] initWithFrame:CGRectMake(100, 100, 150, 20)];

[proViewsetProgressViewStyle:UIProgressViewStyleDefault]; //设置进度条类型

[self.viewaddSubview:proView];

[superviewDidLoad];

}

时间: 2024-12-16 14:47:09

UIProgressView进度条的相关文章

iOS自定义进度条高度(UIProgressView进度条高度改变的实现)

今天自定义了iOS中的进度条,发现系统的进度条高度无法改变, 现在自己封装了一种进度条(实际是是UIView而不是UIProgressView),可以改变进度条的高度,非常好用,分享给大家,直接上代码: //  CTWBProgress.h //  Created by WBapple on 16/7/31. //  Copyright © 2016年 王彬. All rights reserved. // #import <UIKit/UIKit.h> @interface CTWBProg

【iOS开发-10】UIProgressView进度条的几个属性介绍

进度条目前看来不如滑动控件(slider)实用,至少滑动控件可以让用户动,并且我们还能获得滑动控件的值. 目前还未体会到进度条的魅力. - (void)viewDidLoad { //实例化一个进度条,有两种样式,一种是UIProgressViewStyleBar一种是UIProgressViewStyleDefault,几乎无区别 UIProgressView *pro1=[[UIProgressView alloc]initWithProgressViewStyle:UIProgressVi

UIProgressView(进度条控件)

UIProgressView *pr=[[UIProgressView alloc]init]; pr.frame=CGRectMake(150.0, 190.0, 130.0, 30.0);//进度条在屏幕上的位置与大小 pr.progressViewStyle= UIProgressViewStyleBar;//标准进度条 pr.progress=0.5;//设置进度条的起始位置 pr.trackTintColor=[UIColor redColor];//设置进度条的轨道颜色 pr.pro

论 Swift 开发入门 : 进度条(UIProgressView)

转载请声明出处:http://blog.csdn.net/jinnchang/article/details/44802019 ------------------------------------------------------------------------------------------ 概述 ------------------------------------------------------------------------------------------ 代

UI: 使用UIProgressView显示进度条

1.问题 你想在屏幕上显示一个进度条来??述某任务的进度.例如,从 URL 下载一个文件的进 度条. 2. 进度视图是 UIProgressView 的一个实例对象,并被此类设计好的初始化器初始化,使用 initWithProgressViewStyle:这个方法.这个方法的参数可以指定进度条的风格.这个参数是 UIPogressViewStyle 类型,并可以是以下所示的值: UIProgressViewStyleDefault    这是默认的风格. UIProgressViewStyleB

097在进度条中显示进度百分比

效果如下: ViewController.h 1 #import <UIKit/UIKit.h> 2 #import "KMProgressViewWithLabel.h" 3 4 @interface ViewController : UIViewController 5 @property (strong, nonatomic) KMProgressViewWithLabel *progressViewCustom; 6 7 @end ViewController.m

iOS WKWebView添加网页加载进度条(转)

一.效果展示 WKWebProgressViewDemo.gif 二.主要步骤 1.添加UIProgressView属性 @property (nonatomic, strong) WKWebView *wkWebView; @property (nonatomic, strong) UIProgressView *progressView; 2.初始化progressView - (void)viewDidLoad { [super viewDidLoad]; //进度条初始化 self.pr

096实现一个蓝色进度条效果(扩展知识:UIActionSheet和UIAlertView的使用)

效果如下: ViewController.h 1 #import <UIKit/UIKit.h> 2 3 @interface ViewController : UIViewController<UIActionSheetDelegate, UIAlertViewDelegate> 4 @property (strong, nonatomic) UIProgressView *progressView; 5 6 @end ViewController.m 1 #import &qu

进击的UI----------------UIProgressView(进度条)

// UIProgressView的使用 常用于歌曲的和下载的进度条 UIProgressView *oneProgressView = [[UIProgressView alloc] init]; oneProgressView.frame = CGRectMake(0, 30, 320, 30); // 设置UIProgressView的位置和大小 oneProgressView.backgroundColor = [UIColor clearColor]; // 设置背景色 oneProg