2009-02-22 151 views
0

我想讓iPhone背景顏色每X秒改變一次顏色。閃爍的顏色

我該怎麼做?

我一直在嘗試UIAnimation,但只能讓它變成列表中最後一種顏色。

回答

3

您可以使用自定義動畫來遍歷顏色數組,或者只是使用計時器。計時器將調用一個函數來設置所選的背景顏色,然後在視圖上調用setNeedsDisplay。 E.E.

​​

然後設置定時器:

[NSTimer scheduledTimerWithTimeInterval:0.1f target:self selector:@selector(timerEntry) userInfo: nil repeats: NO]; 
+0

如何實現陣列和colorIndex的事情嗎? – Domness 2009-02-22 20:59:46