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 に答える