1

大家好,我正在使用此代码为我的 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];
}

现在可以用发光效果在邮件中发送这个文本吗?提前致谢。

4

1 回答 1

0

不可以。您不能在电子邮件中发送可执行代码并相信它在另一端运行。

于 2012-05-18T04:27:48.940 回答