问题标签 [uiprogressview]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
5375 浏览

iphone - UIProgressView:如何获得旧样式?

我正在寻找 UIProgressView 的旧样式:

替代文字 http://img.skitch.com/20090620-dagnbt6eh2s884nfkbkqgne1re.jpg

我能够展示的唯一 UIProgressViewStyle 是:

替代文字 http://img.skitch.com/20090620-ewujnw3r62qnb91qpbdh8iktne.jpg

旧的还在吗?设置属性UIProgressViewStyle总是会导致蓝色的 UIProgressView。

0 投票
2 回答
2421 浏览

uiview - UIProgressView not updating while my App loads its resources

I am trying to update a UIProgressView progress bar that I have in a UIView during a long resource loading process. Let's say I'm loading a bunch of bitmaps from a NIB file (like maybe a hundred). After I load 10, I issue a .progress to the UIProgressView that is part of a UIView that is already being displayed. So, I issue:

Then, I load another 10 bitmaps, and issue:

etc., etc. When the app runs, the progress bar doesn't advance. It simply stays at its initial position. At the risk of sounding like a complete moron, do I have to load my resources on a separate thread so the OS can update the UI, or, is there an easier way? Thanks for any assistance.

0 投票
4 回答
13533 浏览

iphone - iPhone - 带有进度条的启动画面

我试图创建一个 SplashView,它在后台显示 Default.png,在前面显示一个 UIProgressBar。但是启动画面没有更新...

在我的视图控制器中,我首先加载带有参数的初始视图,我的初始化有多少步,然后我通过 NSTimer 启动第二个线程,在每个初始化步骤之后,我告诉 SplashView 显示新的进度值。

理论上一切看起来都不错,但是在运行这个应用程序时,进度条没有被更新(启动屏幕的方法接收值,我可以在日志中看到它)。我还尝试添加 usleep(10000); 在两者之间给视图更新一点时间,而不是使用进度条,我直接在视图上绘制并调用 [self setNeedsDisplay];但一切都没有奏效:/

我究竟做错了什么?

谢谢你的帮助!

汤姆

这是一些代码:

0 投票
2 回答
774 浏览

iphone - 向用户展示 iPhone 上正在加载的内容的最佳方式是什么?

最近我一直在寻找一种方式来向用户展示正在加载的东西。我敢肯定任何拥有 iPhone 的人以前都看过这是应用程序,但最好的方法是什么?

我开始使用UIProgressHUD,但是有人向我指出您不应该真正使用私有(未记录的)API。

然后我转向了这个,这是一个名为 MBProgressHUD 的自定义版本,但是根据我的经验,当尝试不是从按钮调用它时,它不会显示加载部分,我发现它非常有问题(这不是很难只需单击即可使示例代码崩溃)。

然后我继续从他的书中找到James Brannan的这个,但是当我过去看到许多应用程序看起来像 UIProgressHUD 时,我不太确定为什么他声称这是这样做的“正确方式” .

有没有人有任何想法?

编辑:这很好......

谢谢

0 投票
2 回答
1581 浏览

iphone - 解决 iPhone 中分离线程的等待情况?

我正在使用私人MBProgressHUD

现在,我在调用 addrecord 服务的添加按钮上使用指示器视图。

添加到收藏夹方法:

这一切都运行良好,除了仪器泄漏 uialertview 可能与 mbprogreshud 冲突。

所以我想从调用方法中删除警报并将其放在调用者中,方法如下:

现在调用者方法:

添加到收藏夹方法:

在progresshud线程的启动中分离了这样的东西:

现在我的问题是,如果我遵循第一种情况。我怎样才能保证alertview泄漏不会发生

或者,如果我遵循第二种情况,如何确保在完成此行执行后执行 if 条件:

0 投票
2 回答
1940 浏览

iphone - Converting between unique NSIndexPath and unique NSUInteger (or int)

Is there a better way than what is proposed here to create a one-to-one mapping between an table view cell's NSIndexPath and a unique NSUInteger or int, in order to create a unique tag property value for a widget in the cell (a UIProgressView)?

The link adds methods through a UIKit category extension that converts between NSIndexPath and int, but they only work for less than a certain number of rows.

Granted, I may not run into that limit, but I'm wondering if there is a mapping that someone has come up with that can be guaranteed to work for any number of rows.

0 投票
3 回答
24301 浏览

iphone - 加载 UIWebView 时如何使用 UIProgressView?

我正在开发一个应用程序,我在 UIWebView 中加载一个 urlrequest 并且它成功发生了。

但是现在我试图在加载过程中显示一个 UIProgressView(从 0.0 到 1.0),它会随着加载的进度而动态变化。

我怎样才能做到这一点?

0 投票
1 回答
1395 浏览

cocoa-touch - 更新 UIProgressView 以进行多文件下载(如何使用委托)?

我正在尝试将多个文件下载进度值更新为表格单元格上的 UIProgressView。我有 FileDownloader 类,它具有执行异步下载操作的 NSOperationQueue。我正在考虑使用 FileDownloader 类中的“委托”来更新 UI。但我无法编译代码。我有 FileDownloader 作为单例。我想知道我是否缺少理解一些基本的东西。

以下是代码的设置。

文件下载器.h

MyTableViewCell.h

首先,我在 MyTableViewCell 中出现“找不到 FileDownloaderDelegate 的协议声明”编译器错误。所以我把 FileDownloaderDelegate 的协议声明移到一个单独的 .h 文件中以便能够编译。即使那样,我仍然无法使用我的 tableViewController 分配给委托

[[FileDownloader sharedInstance] setDelegate:myTableViewCell];

我收到“ FileDownloader 可能无法响应 setDelegate 方法”警告,这意味着它不知道委托(尽管我有“@synthesize 委托”)。我想知道我是否不了解单例或委托用法。

0 投票
3 回答
16386 浏览

iphone - 如何将 UIProgressView 初始化为某个值?

它会在 .h 还是 .m 中,我该怎么做?

0 投票
1 回答
446 浏览

iphone - progressview 代表播放-iphone

我创建了一个通过 avaudioplayer 播放音乐文件的应用程序。我需要在视图中显示一个进度视图来表示歌曲的播放。从零开始,在歌曲结束时结束。怎么实现???请帮助...