iPhone应用程序-Flow Cover(封面流)显示图像
在 iPhone 应用程序中,我集成了 Flow cover。我正在将图像从网络服务器加载到流封面中。
直到下载图像时,我正在传递图像计数 = 0 和 uiimage= null
这里我没有通过 viewdidload 或 viewwillAppear 等方法下载图像,实际上我已经创建了单独的线程用于下载和解析,因此加载该视图不需要时间。
下载完成后,如果触摸屏幕,它会显示所有图像,但我想在下载完成时显示图像。
如何以编程方式使图像在没有任何触摸效果的情况下可见?
In an iPhone app I have integrated flow cover. I am loading images into flow cover from web server.
Till the time images downloading i am passing image count= 0 and uiimage= null
Here I am not downloading images on methods like viewdidload or viewwillAppear actually I have created separate thread for downloading and parsing so it would not take time to load that view.
When downloading completes and if touches the screen it is showing all images but I want to display images on download completes.
How to make images visible without any touch effect programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能会帮助您识别下载结束。由于 NSURLConnection 下载是异步的,因此您可以使用通知来标记下载何时完成并启动您的方法。
为 NSNotifications 添加观察者:
在完成下载后发送通知:
这将启动该方法:
This might help you recognize the end of download. Since NSURLConnection downloading is async, you can use notification to mark when the download is finished and start your method.
Add observer for NSNotifications:
In finished download send the notification:
And that will start the method:
使用 ASIHTTP 从 http://allseeing-i.com/ASIHTTPRequest/ 下载 Api
然后集成到项目中
在以下代码放入 .h 文件
和以下代码放入 .m 文件
也从这里下载代码。
Use ASIHTTP Download Api From http://allseeing-i.com/ASIHTTPRequest/
Then that integrate into project
In Following Code Put into .h File
And Following Code Put into .m file
Also Download code From Here.