gpt4 book ai didi

ios - UIImagePickerController & View 不在窗口层次结构中

转载 作者:搜寻专家 更新时间:2023-10-30 22:00:48 25 4
gpt4 key购买 nike

我有一个简单的 Swift 项目,其中:

ViewController A (class ViewController: UIViewController) 呈现 ViewController B -- (class WebViewController: UIViewController, WKNavigationDelegate, CLLocationManagerDelegate, WKScriptMessageHandler).

ViewController B 本质上只是一个 WKWebView,这是它的 viewDidLoad():

let contentController = WKUserContentController();
contentController.addScriptMessageHandler(
self,
name: "eventHandler"
)

let config = WKWebViewConfiguration()
config.userContentController = contentController

webView = WKWebView(frame: CGRectZero, configuration: config)
webView.navigationDelegate = self
webView.allowsBackForwardNavigationGestures = false
view = webView

因此,当显示 ViewController B 时,我基本上整个屏幕上只有一个网络浏览器。

我遇到的问题是,如果用户(在网页上)点击“文件上传/文件选择器”,我首先会看到:

Passed in type public.item doesn't conform to either public.content or public.data. If you are exporting a new type, please ensure that it conforms to an appropriate parent type. the behavior of the UICollectionViewFlowLayout is not defined because the item width must be less than the width of the UICollectionView minus the section insets left and right values, minus the content insets left and right values.

The relevant UICollectionViewFlowLayout instance is <_UIAlertControllerCollectionViewFlowLayout: 0x12e30f270>, and it is attached to ; animations = { bounds.origin=; bounds.size=; position=; }; layer = ; contentOffset: {0, 0}; contentSize: {0, 0}> collection view layout: <_UIAlertControllerCollectionViewFlowLayout: 0x12e30f270>.

然后,如果用户从 iOS 选项列表中选择“拍照或录像”或“照片库”,我会得到:

Warning: Attempt to present UIImagePickerController: 0x12d192200 on My.WebViewController: 0x12e2883e0 whose view is not in the window hierarchy!

结果是:

  1. 照片库选择器//相机应用从未出现。
  2. 由于某种原因,ViewController B 经历了动画解散。

有人有什么建议吗?我试图提供相关代码,但如果需要我可以粘贴更多。谢谢。

-- 更新 --------

好的,经过更多的研究,实际上有两件不同的事情在发生:

  1. 第一个错误与移动浏览器处理“文件选择器”的方式有关。 See here ...宏伟的计划,没什么大不了的。

  2. 第二个错误 Attempt to present UIImagePickerController... —— 两者中的那个更让人虚弱 —— 更丑陋。

如果带有 WKWebView 的 ViewController 是从另一个 ViewController 呈现的,那么在用户尝试“选择”图像(从库或相机)时,iOS 将尝试 您的 WKWebView ViewController 呈现 UIImagePicker,这正是您想要的。

不幸的是,由于我还不知道的原因,用户试图“挑选”图像的行为也会导致 iOS 关闭呈现的 View Controller ……在这种情况下,它是您的 WKWebView Controller : (因此,WKWebView ViewController 关闭,因此当它尝试呈现 UIImagePicker 时它不在窗口层次结构中——因此,错误。

我的解决方案(很老套,但适用于我的特定用例)如下;我希望这对某人有帮助:

  1. 实例化 WKWebView ViewController (ViewController B)
  2. VC B设置为应用的 Root View Controller
  3. ViewController A呈现VC B
  4. 解雇 VC A

这基本上使得 WKWebView 不能被关闭,回避了这个问题。

let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("Browser") as! WebViewController
UIApplication.sharedApplication().keyWindow?.rootViewController = vc

self.presentViewController(vc, animated: false, completion: { () -> Void in
self.dismissViewControllerAnimated(false, completion: nil)
})

最佳答案

如果您目前正在 viewDidLoad(){} 函数中执行 int,请尝试将代码移至覆盖 viewDidAppear(animated: Bool) {} 我遇到了同样的问题今天它修好了。

关于ios - UIImagePickerController & View 不在窗口层次结构中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35999551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com