¡@

Home 

2014/10/15 ¤U¤È 10:03:35

iphone Programming Glossary: alph

UILabel text glow and marquee

http://stackoverflow.com/questions/10327667/uilabel-text-glow-and-marquee

touch uilabel share improve this question It's probably much easier if you code it yourself. Start with this float alph 0.7 void viewDidLoad super viewDidLoad glowLabel UILabel alloc initWithFrame CGRectMake 0 0 200 100 NSString string @ some.. @ some text glowLabel.text string glowLabel.textColor UIColor blueColor self.view addSubview glowLabel glowLabel.alpha alph NSTimer scheduledTimerWithTimeInterval 0.4 target self selector @selector glowMarquee userInfo nil repeats.. @ some text glowLabel.text string glowLabel.textColor UIColor blueColor self.view addSubview glowLabel glowLabel.alpha alph NSTimer scheduledTimerWithTimeInterval 0.4 target self selector @selector glowMarquee userInfo nil repeats YES void..