我想将图像显示为动画,只需浏览一下屏幕,然后在1或2秒后消失。 它应该是我已经存在的WKWebView上方的布局。 我到处寻找如何做到但无法配置它。
提前致谢!
答案 0 :(得分:0)
在情节提要的viewController场景中,在所有内容之上添加UIImageView
并附加IBOutlets
(或通过viewDidLoad
中的代码)并加载您的图片。例如,您的UIImageView *splashImageView
。
然后在viewDidAppear
方法中使用此代码:
[UIView animateWithDuration:1.0f // this is a duration param
options: UIViewAnimationCurveEaseOut
animations:^{
[self.splashImagaView setAlpha:0.0f];
}
completion:^(BOOL finished){
}];
有关详细信息,请参阅here
希望这有帮助。