iPhone 活动指示器
如何在登录页面加载UIActivityIndicatorView
?就像 Facebook iPhone 应用程序一样。
How to load UIActivityIndicatorView
in a login page? just like facebook iPhone App.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你的问题不清楚。但这是添加活动指示器的方法。
开始为活动设置动画
停止为活动设置动画
your question is not clear. but this is the way to add activity indicator.
to start animating the activity
to stop animating the activity
当您想要制作动画时,请使用
[activityIndicator startAnimating];
Use
[activityIndicator startAnimating];
when you want to animate像这样初始化..
当你想要动画
时想要停止
编辑:看到评论后
Facebook活动指示器没有什么特别的。他们只是清除那里的视图并显示活动指示器何时开始动画。
您只需创建一个视图,例如 ActivityView,它覆盖屏幕(或您想要设为白色的任何部分),为视图添加白色背景,并将活动指示器添加到视图中。首先隐藏此视图,然后当您想要显示活动指示器取消隐藏视图并启动活动指示器动画。在活动指示器中编写两个成员函数来启动和停止动画,以便您可以从任何地方控制动画。
initialize like this..
when you want to animate
when you want to stop
EDIT : After seeing the comment
Nothing peculiar about Facebook activity indicator.They just clearing there view along with showing when activity indicator starts animation..
You just create a view, say ActivityView, which covers the screen(or whatever section you want to make white), put a white background to the view, and add the activity indicator to the view..First hide this view, and when you want to show activity indicator unhide the view and start activity indicator animation..Write two member functions in activity indicator to start and stop animation, so that you can control the animation from anywhere..