大家好,我正在使用此代码为我的 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];
}
现在可以用发光效果在邮件中发送这个文本吗?提前致谢。