NSTimer セレクター内に次のコードを取得しました。
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0];
[infoLbl setAlpha:0];
[UIView commitAnimations];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:2.0];
[infoLbl setAlpha:1];
[UIView commitAnimations];
そこで、UILabel (infoLbl) に単純なフェードイン/フェードアウト ループを実装したいと考えています。
さて、このコードでは、UILabel が突然消えてからフェードインするため、フェードイン ステップのみを取得します。
いくつかの提案?
ありがとう。