我試圖在它通過改變α水平來回一次的觀點負載跳動緩慢,以至於有一個圖像的UIButton ...使uibutton脈動。
目前我在做這一點,但什麼都不做....
-(void)loopdyloop
{
while (myCount < 1000)
{
[UIView animateWithDuration:3.0
delay:0.0f
options:UIViewAnimationCurveEaseOut
animations:^{
iconButton.alpha = 0.0;
} completion:^(BOOL finished) {
if (finished) {
NSLog(@"animated");
}
}];
[UIView animateWithDuration:3.0
delay:0.0f
options:UIViewAnimationCurveEaseOut
animations:^{
iconButton.alpha = 1.0;
} completion:^(BOOL finished) {
if (finished) {
NSLog(@"animated");
}
}];
myCount++;
}
}
這種方法是從viewDidLoad方法調用,
相當粗糙,但我知道它我最好的嘗試,如果你對我怎麼能做到這一點,將不勝感激的任何想法。
我實際上看到了類似這個代碼的東西..但我無法弄清楚如何將它應用到一個uibutton。我認爲會有更多的東西不僅僅是mybutton.layer:P:P感謝你的高舉!動畫真棒! :P – HurkNburkS 2012-07-12 20:30:05
哈哈哈,我也是。我想你只需要在你的按鈕層應用它。所以goodluck :) – Bazinga 2012-07-13 00:29:27
這看起來不錯! – pob21 2012-09-24 18:56:59