2012-07-31 47 views
0

如何製作將UIButton的屬性從隱藏變爲顯示以及從顯示變爲隱藏的4個按鈕之間交替的計時器?設置計時器以更改UIButton屬性

我正在使用xCode 4.4

謝謝!

+0

[你有什麼嘗試?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) – 2012-07-31 18:00:48

+0

我不知道該做什麼,但我試過在觸發事件中使用計時器,但即使這是正確的,我也不知道如何通過代碼更改屬性。 – Pablo 2012-07-31 18:09:20

+0

計時器: http://stackoverflow.com/questions/3519562/how-do-i-write-a-timer-in-objective-c 顯示/隱藏: http://stackoverflow.com/questions/ 957821 /顯示-或隱藏-A-的UIButton合iphone應用內與 - obejctive-C – Zac 2012-07-31 18:15:30

回答

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 out.It的精心細緻。