我想在弹出视图中显示一个图像,其中还包含关闭按钮。
我已经搜索过了,但我没有找到任何相关内容。
请帮帮我??
答案 0 :(得分:1)
试试以下简单方法 -
您可以创建一个包含UIView
和UIImageView
的{{1}}。
每当您想要显示图像时,只需将图像分配给UIImageView并显示UIView。
当您想要隐藏图像时,只需按下UIButton UIButton
即可隐藏UIView。
希望这会对你有所帮助。
答案 1 :(得分:0)
尝试弹出
1)ALPopup
2)BlureModelView
3)Ogactionchooser
4)Other和This
答案 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];
}
}