问题标签 [uiactivityindicatorview]

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 投票
2 回答
2959 浏览

iphone - iphone - uiactivityindicatorview does not hide

i know this is a very common question, i read most of the questions asked in stackoverflow but still couldn't figure out how to remove the uiactivityindicatorview from the view. please find below the code

the header file

Also, i have checked the box in the IB that says, hide when stopped. I put NSLog(@"in webViewDidFinishLoad") in the webViewFinishLoad method, seems like it does not hit that method for some reason. and for

in the viewDidLoad method, it gives a message as below in the console

0 投票
3 回答
14445 浏览

ios - 无法让微调器出现

我想用一个微调器。但是,下面的代码没有显示微调器,我不知道为什么。如何使这项工作?顺便说一句,它是从我创建的提交按钮调用的。

0 投票
2 回答
1045 浏览

cocoa-touch - UITableViewCell的accessoryView在可见视图改变后消失

我正在经历这种奇怪的情况。我有一个 UITableView,当用户选择一个单元格时,一个漫长的(网络)过程开始了。因此,我在后台线程中执行此操作,并放置(在 didSelectRowAtIndexPath 中)一个 UIActivityIndi​​catorView 作为附件视图。这是我写的:

一切似乎都正常工作,除了,如果在加载过程中(当指示器动画时),我使用 UITabBar 切换视图,当我回到 UITableView 时,应该仍然存在的 UIActivityIndi​​catorView 消失了。知道我做错了什么吗?谢谢!

0 投票
1 回答
1370 浏览

iphone - Is there any solution about UIActivityIndicatorView in synchronous process?

In a method, i start the UIActivityIndicatorView to start. and then use NSXMLParser to get the node information from the XML with synchronization. After finished parse, i want stop the UIActivityIndicatorView. My propose is to appear the UIActivityIndicatorView when parse the XML, but it doesn't work. Any ideas? Thanks.

0 投票
1 回答
1244 浏览

iphone - 加载图像时的活动指示器 [iphone]

我正在开发的 iPhone 应用程序有一个大问题。

当您运行应用程序时,您会看到来自不同用户的图像流。实际上,当您启动我的应用程序或单击刷新按钮时,您会看到一个带有“正在刷新..”的模态圆角矩形,完成刷新后,您可以看到所有图像。但这需要太多时间,特别是对于慢速连接。

现在查看来自不同应用程序的屏幕截图:

替代文字 替代文字

替代文字

这些应用程序是 Nuji、Picplz 和 Instagram。当您运行这些应用程序时,您会立即看到流,当您向下滚动并且其他图像获得焦点时,图像开始加载并且您会看到一个活动指示器。

我想要这样的东西,我想要一个在图像加载时的活动指示器,也许为了提高应用程序速度,开始加载焦点图像并停止加载其他图像。

我希望我能很好地解释自己。请如果你能帮助我。

非常感谢你,对不起我的英语。

再见。

0 投票
3 回答
1060 浏览

iphone - UIActivity 指示器在 iPhone 4 (Retina) 上不起作用

我有一个UIActivityIndicator在 iPhone 3G 模拟器/设备中运行良好的设备,但它不适用于 iPhone 4(Retina)的模拟器/设备。我想提一下,它是在黑色背景上。

0 投票
2 回答
341 浏览

iphone - 更多“请求非结构或联合中的成员”错误

我正在使用 coocs2d 并且在评论时出现标题错误。我将 UIKit 导入到我的标题中。

loadingBar 是一个 CCProgressTimer 并且 activity 是一个 UIActivityIndi​​catorView

0 投票
3 回答
5727 浏览

iphone - iPhone - 帮助 MBProgressHUD、Sudzc、Web 服务和 NSThread

我有以下代码,它连接到 Web 服务并返回一个类别数组。

我正在为 SOAP Web 服务使用以下包装器:

http://www.sudzc.com/

..以及MBProgressHUD活动指标的以下内容:

https://github.com/jdg/MBProgressHUD

我想要一个 HUD 进度指示器来指示它正在连接和获取结果。我目前正在使用MBProgressHUD以达到预期的效果,但是我注意到它不能正常工作。tableView在加载和显示my 中的实际单元格之前,进度指示器会消失。我也在MBProgressHUD我的应用程序的不同区域使用,但通常每次我连接到 Web 服务来获取结果。

有人可以指导我如何修复以下代码以使其正常工作吗?我认为这可能与显示进度指示器后触发回调方法有关。不太确定如何MBProgressHUD使用回调方法正确实现。

这是我“试图”让它发挥作用的可怕尝试。

0 投票
1 回答
1016 浏览

iphone - 具有 UIActivityIndi​​cator 和 UIProgressView 的 UITableView 单元格

我有一个包含多个单元格的 UITableView,其中一些单元格(用于仍在上传的文件)同时具有 UIActivityIndi​​cator 和 UIProgressView。完成的文件使用不同的图标(而不是活动指示器)并隐藏进度视图。

该表使用 NSFetchedResultsController 作为数据源,因此我获取了数据模型的更新并更新了内容。

一切正常。然而,问题在于性能。每次我调用reloadData我的 UIActivityIndi​​cators 都会闪烁,而且不是很流畅。尽管我正在从 nib 文件中进行缓存,但reloadData将不得不计算 ProgressView 的新进度百分比,并且除了在上传完成时将其隐藏之外,我不会对 ActivityIndi​​cator 执行任何操作。

有人试过类似的东西吗?有解决方法吗?

我正在考虑拥有一组我的进度视图引用并使用它而不是调用 reloadData.. 不确定这是否是正确的方法。

谢谢,

费尔南多

0 投票
7 回答
31594 浏览

ios - How can I show alertview with activity indicator?

I want to show alertview with message: "Loading data" and spinning activity indicator. How can I do this?