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

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

  • 进度条

1、UIProgressView 的创建

  • 1.1 由 frame 创建

    // 高度不起作用UIProgressView *progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(50, 100, 200, 0)];// 将 progressView 添加到 View[self.view addSubview:progressView];
  • 1.2 由类型创建

    // 长度为系统默认长度UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault];// 将 progressView 添加到 View[self.view addSubview:progressView];

2、UIProgressView 的设置

// 设置 frame,高度不起作用progressView.frame = CGRectMake(50, 100, 200, 0);// 设置位置progressView.center = self.view.center;// 设置进度条的类型/*UIProgressViewStyleDefault    // normal progress barUIProgressViewStyleBar        // for use in a toolbar*/progressView.progressViewStyle = UIProgressViewStyleBar;// 设置当前值/*范围 0~1*/progressView.progress = 0.8;[progressView setProgress:0.8 animated:YES];// 设置走过的颜色progressView.progressTintColor = [UIColor redColor];// 设置未走过的颜色progressView.trackTintColor = [UIColor blueColor];// 设置走过的图片progressView.progressImage = [UIImage imageNamed:@"pic1"];// 设置未走过的图片progressView.trackImage = [UIImage imageNamed:@"pic2"];

转载于:https://www.cnblogs.com/CH520/p/9406455.html

你可能感兴趣的文章
RGB 颜色对照表
查看>>
RGB色彩模式
查看>>
匈牙利算法
查看>>
OGRE之跳出漫长的编译等待
查看>>
通用分页存储过程真的有注入漏洞吗?
查看>>
atitit.软件开发GUI 布局管理优缺点总结java swing wpf web html c++ qt php asp.net winform
查看>>
php操作memcache的使用测试总结
查看>>
8天玩转并行开发——第一天 Parallel的使用
查看>>
Sublime Text 3 史上最性感的编辑器
查看>>
BZOJ3832 : [Poi2014]Rally
查看>>
让Java和JavaScript进行交互
查看>>
android 上传文件
查看>>
python 书籍推荐 二
查看>>
NIO框架之MINA源码解析(转)
查看>>
java环境变量配置
查看>>
C#中值类型和引用类型
查看>>
Android Notification 的使用
查看>>
自动编号维护SNRO
查看>>
Oracle 临时事务表 全局临时表_global temporary table
查看>>
【目录】数据挖掘与机器学习相关算法文章总目录
查看>>