在iPhone上“显示”一个图像

时间:2009-09-24 08:34:13

标签: iphone

我想在UIView上透露一张图片:

  1. 显示空白屏幕
  2. 从头到尾缓慢显示图像
  3. 有什么想法吗?

1 个答案:

答案 0 :(得分:0)

这样的事情:

UIImageView *img = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"someImage.png"]];

CGRect endFrame = img.frame;
CGRect startFrame = img.frame;

startFrame.size.height = 0;
img.frame = startFrame;

[view addSubview:img];

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration: 0.5];

img.frame = endFrame;

[UIView commitAnimations];