本文介绍了如何设置在iPhone自定义按钮的活动指示灯的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是新iPhone的发展。我想设置这是我的自定义按钮加载了一个活动的指标。请指导我。 (例如:应用程序商店 - >搜索 - >显示25个(上点击))
I am new to iPhone development. I want to set an activity indicator which is loaded on my custom button. Please guide me. (Example: App store --> Search --> Show 25 more (on click)).
推荐答案
添加 UIActivityIndicatorView
作为按钮的子视图:
Add the UIActivityIndicatorView
as a subview of the button:
// Create spinner
UIActivityIndicatorView *myIndicator = [[UIActivityIndicatorView alloc]
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
// Position the spinner
[myIndicator setCenter:CGPointMake(myButton.frame.size.width / 2, myButton.frame.size.height / 2)];
// Add to button
[myButton addSubview:myIndicator];
// Start the animation
[myIndicator startAnimating];
这篇关于如何设置在iPhone自定义按钮的活动指示灯的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!