我試圖給UITextField邊框顏色設置動畫(淡入)。這是我嘗試的UITextField邊框動畫
tmp.layer.borderColor= [UIColor colorWithRed:255.0 green:0.0 blue:0.0 alpha:0.0].CGColor;
tmp.layer.borderWidth = 1.0f;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:2];
tmp.layer.borderColor= [UIColor colorWithRed:255.0 green:0.0 blue:0.0 alpha:1.0].CGColor;
[UIView commitAnimations];
上面的代碼將紅色邊框添加到textFields,但沒有動畫。
請參閱更新的代碼。 Alpha通道仍然不動畫。 – foho 2012-03-07 12:19:42
不,請設置不帶alpha的顏色。我的意思是視圖本身的alpha屬性應該是動畫的。像'tmp.alpha = 0.0;'在創建階段,'tmp.alpha = 1.0;'在動畫塊內部。 – Ariel 2012-03-07 12:27:44
我無法得到它。你能告訴我一個例子嗎? – foho 2012-03-07 12:33:21