我想在弹出视图中显示一个图像,其中还包含关闭按钮。
我已经搜索过了,但我没有找到任何关于它的东西。
请帮我??
只需尝试以下简单方法 -
您可以创建一个UIView
包含UIImageView
和UIButton
。
每当您想显示图像时,只需将图像分配给 UIImageView 并显示 UIView。
当你想隐藏图像时,只需在按下 UIButton 时隐藏 UIView (i.e close button)
。
希望这会帮助你。
试试这个弹出
1) ALPopup
2) BlureModelView
3) Ogactionchooser
4)其他和这个
- (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];
}
}