我已经在网上搜索了这个问题并空手而归。我有一个我正在制作的应用程序,我希望用户能够查看我连接到UIImageView以显示全屏的图像。基本上通过点击UIImageView,它会使按钮和状态栏消失,直到再次点击图像。我知道这可能是一个简单的动画块,我将扔在我的viewdidload或我从中调用我的图像。我只是不确定它的去向。
如果help.this位于我的.m文件
,这里是我的图片来源-(void)viewDidLoad {////Loads UIImageView from URL
todaysWallpaper.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.inkdryercreative.com/daily/archive/mondays/images/062-mondays-960x640-A.jpg"]]];
屏幕上显示四个按钮。我希望它类似于你在原生照片应用程序中获得的感觉,当你看起来和图片和屏幕上的其他一切消失。任何帮助或指导都会很棒。如果需要,我可以发送其他代码
答案 0 :(得分:0)
CGRect *oldFrame = todaysWallpaper.frame; // store this somewhere for when you go back
CGRect *newFrame = [[UIScreen mainScreen] bounds];
[UIView animateWithDuration:0.5 animations:^{
todaysWallPaper.frame = newFrame;
}];