如何制作一个计时器,将 UIButton 的属性从隐藏更改为显示,以及在 4 个按钮之间交替从显示更改为隐藏?
我正在使用 xCode 4.4
谢谢!
如何制作一个计时器,将 UIButton 的属性从隐藏更改为显示,以及在 4 个按钮之间交替从显示更改为隐藏?
我正在使用 xCode 4.4
谢谢!
NSTimer *aTimer = [NSTimer scheduledTimerWithTimeInterval: 2.0
target: self
selector:@selector(onTick:)
userInfo: nil repeats:YES];
而且,onTick 方法应该是这样的
-(void)onTick:(NSTimer *)timer {
//This is where you need to set your button hidden property.
}
看看这个链接,很详细。