弹出窗口在iPhone应用程序上显示图像?

时间:2013-06-28 07:41:07

标签: ios popup uiimage

我想在弹出视图中显示一个图像,其中还包含关闭按钮。

我已经搜索过了,但我没有找到任何相关内容。

请帮帮我??

3 个答案:

答案 0 :(得分:1)

试试以下简单方法 -

您可以创建一个包含UIViewUIImageView的{​​{1}}。

每当您想要显示图像时,只需将图像分配给UIImageView并显示UIView。

当您想要隐藏图像时,只需按下UIButton UIButton即可隐藏UIView。

希望这会对你有所帮助。

答案 1 :(得分:0)

尝试弹出

1)ALPopup
2)BlureModelView
3)Ogactionchooser
4)OtherThis

答案 2 :(得分:0)

- (IBAction)btn:(id)sender {
 UIView *contentView;
 UIImageView *dot;

 contentView = [[UIView alloc] initWithFrame:CGRectMake(0,0,300,350)];
 contentView.backgroundColor = [UIColor whiteColor];
 contentView.layer.cornerRadius = 5.0;

  dot =[[UIImageView alloc] initWithFrame:CGRectMake(50,40,200,200)];
  dot.image = [UIImage imageNamed:"DSC_0055.JPG.jpg"];
  dot.contentMode = UIViewContentModeScaleAspectFit;
  [contentView addSubview: dot];
 [[KGModal sharedInstance] showWithContentView:contentView    andAnimated:YES];
}
}

https://github.com/kgn/KGModal