菜鸟教程小白 发表于 2022-12-12 16:27:10

ios - Swift 2.0 UIImagePickerController 在关闭时关闭父 View


                                            <p><p>开始使用 Swift 2.0 之前的版本在 Xcode 6.* 中开发应用程序。自从更新到 Xcode 7.0 和 swift 2.0,我的应用程序没有按预期运行。 </p>

<p>在我的应用程序中,我有一个典型的用户设置 View ,它被推送到我的 NavigationController 上,例如:</p>

<pre><code>let storyBoard = UIStoryboard(name: &#34;Main&#34;, bundle: nil)
let view = storyBoard.instantiateViewControllerWithIdentifier(&#34;settingsView&#34;)
controller.navigationController?.setViewControllers(, animated: false)
</code></pre>

<p>当用户点击他们的头像时,<code>UIImagePickerController</code> 就会出现。然而,现在,如果用户点击取消或选择图像,图像 Controller 将被关闭,但用户设置 Controller 也是如此。为什么会突然发生这种情况(在 Xcode 更新之前它按预期工作)。</p>

<p>处理图片选择的代码如下:</p>

<pre><code>func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: ) {
    if let pickedImage = info as? UIImage {
      self.imageUrl = info as! NSURL
      self.Picture.contentMode = .ScaleAspectFill
      self.Picture.image = pickedImage
      self.PictureChosen = true
    }

    dismissViewControllerAnimated(true, completion: nil)
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我在展示一个父 Controller 是 <code>UITabBarController</code> 的 <code>UIImagePickerViewController</code> 时遇到了类似的问题,只需将 <code>modalPresentationStyle</code> 设置为 <code>overCurrentContext</code></p>

<pre><code>let imagePicker = UIImagePickerController()
imagePicker.sourceType = .photoLibrary
imagePicker.allowsEditing = false
imagePicker.delegate = self
imagePicker.modalPresentationStyle = .overCurrentContext
present(imagePicker, animated: true, completion: nil)
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Swift 2.0 UIImagePickerController 在关闭时关闭父 View ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32878425/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32878425/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Swift 2.0 UIImagePickerController 在关闭时关闭父 View