こんにちは、私はこのコードを使用して、UILable テキストに輝く効果を与えています。
[NSTimer scheduledTimerWithTimeInterval:0.4
target:self
selector:@selector(glowMarquee)
userInfo:nil
repeats:YES];
-(void)glowMarquee {
alph = (alph == 1) ? 0.1 : 1;
[UIView beginAnimations:@"alpha" context:NULL];
[UIView setAnimationDuration:0.4];
lblpreview.alpha = alph;
[UIView commitAnimations];
}
このテキストを光る効果のあるメールで送信することは可能ですか? 前もって感謝します。