Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含表格视图的弹出框,一旦选择了一行,我想然后推送 UIImagePickerController。
根据 Apple 网站上的文件,我只能在新的视图控制器中呈现它。如何在弹出窗口中呈现弹出窗口?还是有其他方法可以做到这一点?
最简单的方法是创建一个委托并使用退出 unWind segue 或通过使用委托手动关闭弹出框来关闭 didSelectRowAtIndex 上的 tableview。然后呈现包含 UIImagePickerController 的 popOver。您也可以只使用委托来显示一个弹出框以及 tableview,尽管这可能看起来很混乱。