1

我正在创建一本阅读器应用程序。在我的应用程序中,我将页面作为来自 Web URL 的图像加载。加载每个图像时,我喜欢显示在此处输入图像描述如下所示 的加载百分比

请给我一些想法

4

3 回答 3

2

以下是一些可能对您有所帮助的开源控件

https://www.cocoacontrols.com/controls/koaprogressbar

https://www.cocoacontrols.com/controls/mcprogressbarview

https://www.cocoacontrols.com/controls/advprogressbar

于 2013-10-29T11:28:33.827 回答
2

我制作了一个非常可定制的开源进度视图,在即将发布的 2.0 版本中更是如此。你可以在lightdesign/LDProgressView找到它。请让我知道它是否适合您的需求或如何改变它。

于 2013-10-29T23:37:54.290 回答
1

看看 NSURLConnectionDataDelegate(NSURLConnection 的协议)。 https://developer.apple.com/library/mac/documentation/Foundation/Reference/NSURLConnectionDataDelegate_protocol/Reference/Reference.html#//apple_ref/occ/intf/NSURLConnectionDataDelegate

您需要实现以下方法:

(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite

为了支持这种行为。

于 2013-10-29T11:22:42.213 回答