0

我希望我的应用程序的欢迎视图看起来与 Twitter 的相似:

twitter_welcome

我的意思是,我想定期切换该视图中显示的图片,并带有某种褪色效果。我一直在寻找这方面的一个例子,但我没有找到任何例子。有人可以帮我吗?

谢谢!

4

1 回答 1

3

使用[NSTimer scheduledTimerWithTimeInterval:time target:self selector:@selector(function) userInfo:nil repeats:YES];.

此函数每 x 次启动一个选择器,因此您可以在其上更改背景图像。

对于动画,使用:

[view AnimateWithDuration:1.0 delay:0.1 
option:UIViewAnimationOptionAutoreverse 
animations:^{
// content of the animation
} completion:NULL];

这里的所有选项。

于 2013-07-27T18:58:21.543 回答