如何制作一个计时器,将UIButton的属性从隐藏更改为显示,从显示更改为隐藏,在4个按钮之间交替?
我正在使用xCode 4.4
谢谢!
答案 0 :(得分:0)
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.
}
检查这个link。它非常详细。