UIAlertView 之上的 UIView
我有一个 UIAlertView,它有一个按钮。通过按下该按钮,我需要在 UIAlertView 上方加载相机控制器(图像选择器)。在 ImagePicker 中按取消将返回到上一个视图的 UIAlertView。
非常感谢任何帮助。提前致谢。
{
UIButton *aStartTimer = [[UIButton alloc]initWithFrame:CGRectMake(90, 170, 45, 45)];
[aStartTimer setImage:[UIImage imageNamed:@"timer.png"] forState:UIControlStateNormal];
[alertView addSubview:aStartTimer];
}
提前致谢
I have an UIAlertView which has an Button. By pressing that button I need to load a Camera controller(Image Picker) above the UIAlertView. Pressing cancel in ImagePicker will go back to UIAlertView of Previous view.
Any Help is Greatly appreciated. Thanks in Advance.
{
UIButton *aStartTimer = [[UIButton alloc]initWithFrame:CGRectMake(90, 170, 45, 45)];
[aStartTimer setImage:[UIImage imageNamed:@"timer.png"] forState:UIControlStateNormal];
[alertView addSubview:aStartTimer];
}
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)