Dismissing of UIImagePickerController dismisses presenting view controller also

后端 未结 4 1319
醉酒成梦
醉酒成梦 2021-02-06 02:04

I am working on a project that uses tabbar system. One of the item of tabbar is JobPostingViewController. I Embed it in UINavigationController. There is a UIButton called add ne

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-06 02:32

    You could use:

    picker.modalPresentationStyle = .overCurrentContext
    

    but depending on your screen layout, it may be better to use:

    picker.modalPresentationStyle = .overFullScreen
    

    otherwise your "cancel", "retake" and "use photo" buttons may not be visible.

提交回复
热议问题