-1

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

我已经搜索过了,但我没有找到任何关于它的东西。

请帮我??

4

3 回答 3

1

只需尝试以下简单方法 -

您可以创建一个UIView包含UIImageViewUIButton

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

当你想隐藏图像时,只需在按下 UIButton 时隐藏 UIView (i.e close button)

希望这会帮助你。

于 2013-06-28T08:56:17.077 回答
0

试试这个弹出

1) ALPopup
2) BlureModelView
3) Ogactionchooser
4)其他这个

于 2013-06-28T07:48:19.883 回答
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

于 2017-03-27T13:08:39.720 回答