iphone开发..需要在背景图像上淡化文本

时间:2010-07-04 02:28:54

标签: iphone text fading

我希望有一个标签出现,并在背景图像上缓慢淡出。 并且在文本图像上有一个标签,但我希望它能保持第二,然后逐渐淡化使用xcode和utalising界面构建器。感谢

1 个答案:

答案 0 :(得分:1)

如果您从Interface Builder链接了UIImage和UILabel,请将以下内容放在viewdidload:方法中:

// Starting state
myLabel.alpha=0.0;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
// Ending state
myLabel.alpha=1.0;
[UIView commitAnimations];

// Run another function to fade out after a second
[self performSelector:@selector(fadeOut:) withObject:sender afterDelay:1.0];