如何在 iPhone 上使用活动指示器视图?
活动指示器视图在许多应用程序中都很有用。 关于如何在 iPhone 上添加、激活和关闭活动指示器视图有什么想法吗?
这里欢迎所有的方法。
An activity indicator view is useful in many applications.
Any ideas about how to add, activiate and dismiss an activity indicator view on iPhone?
All the methods for this are welcomed here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
创建:
开始:
停止:
最终完成后,从视图中移除微调器并释放。
Create:
Start:
Stop:
When you're finally done, remove the spinner from the view and release.
看一下开源 WordPress 应用程序。 他们创建了一个非常可重用的窗口,用于在应用程序当前显示的任何视图之上显示“正在进行的活动”类型的显示。
http://iphone.trac.wordpress.org/browser/trunk
您的文件想要的是:
然后显示它使用类似:
并隐藏:
Take a look at the open source WordPress application. They have a very re-usable window they have created for displaying an "activity in progress" type display over top of whatever view your application is currently displaying.
http://iphone.trac.wordpress.org/browser/trunk
The files you want are:
Then to show it use something like:
And hide with:
关于:
请注意,如果您确实使用此代码,您必须向任何请求它的用户提供您自己的应用程序的所有源代码。 您需要注意,他们可能会决定重新打包您的代码并自己在商店中出售。 这一切都是根据 GNU 通用公共许可证 (GPL) 的条款提供的。
如果您不想被迫打开源代码,那么您不能使用 wordpress iPhone 应用程序中的任何内容,包括引用的活动进度窗口,而不强制 GPL 适用于您自己的。
in regards to:
note that if you do utilise this code you MUST provide ALL the sourcecode to your own application to any user that requests it. You need to be aware that they may decide to repackage your code and sell it on the store themselves. This is all provided for under the terms of the GNU General Public License (GPL).
If you don't want to be forced into opening your sourcecode then you cannot use anything from the wordpress iphone application including the, referenced activity progress window, without forcing the GPL to apply to your own.
关于这一点的文档非常清楚。 它是 UIView 子类,因此您可以像任何其他视图一样使用它。 启动/停止您使用的动画
The documentation on this is pretty clear. It's a UIView subclass so you use it like any other view. To start/stop the animation you use
使用 Storyboard-
创建-
转到头文件并为 UIActivityIndicatorView 创建 IBOutlet-
建立从 Outlets 到 UIActivityIndicatorView 的连接。
开始:
当您需要在实现文件(.m)中使用以下代码来启动活动指示器时,请使用以下代码 -
停止:
当您需要时,请使用以下代码在您的实现文件(.m)中使用以下代码停止活动指示器-
Using Storyboard-
Create-
Go to the header file and create an IBOutlet for the UIActivityIndicatorView-
Establish the connection from the Outlets to the UIActivityIndicatorView.
Start:
Use the following code when you need to start the activity indicator using following code in your implementation file(.m)-
Stop:
Use the following code when you need to stop the activity indicator using following code in your implementation file(.m)-
我认为你应该更好地使用隐藏。
i think you should use hidden better.
活动指示器 2 秒显示并转到下一页
Activity indicator 2 sec show and go to next page