• 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];

    }

     
     
  • 相关阅读:
    Angular 学习笔记 (Material table sticky 原理)
    Asp.net core 学习笔记 ( ef core transaction scope & change level )
    sql server 学习笔记 (nested transaction 嵌套事务)
    html 图片文字并排显示
    Maven 的配置
    Eclipse的配置
    tomcat 的安装与配置
    java jdk的安装与配置
    javascript 拖拽
    html5 CSS input placeholder兼容性处理
  • 原文地址:https://www.cnblogs.com/OIMM/p/4695631.html
Copyright © 2020-2023  润新知