你好,我正在使用这段代码为我的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];
}
现在可以通过邮件发送带有发光效果的文本吗? 提前谢谢。
答案 0 :(得分:0)
没有。您无法在电子邮件中发送可执行代码,并相信它在另一端运行。