0

如何制作一个计时器,将 UIButton 的属性从隐藏更改为显示,以及在 4 个按钮之间交替从显示更改为隐藏?

我正在使用 xCode 4.4

谢谢!

4

1 回答 1

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.
}

看看这个链接,很详细。

于 2012-07-31T18:31:47.950 回答