我使用MWPhotoBrowser实例在我的应用中显示相册或单张图片。使用导航控制器时,我只需按后退按钮即可弹出视图控制器。 我希望以模态方式呈现它,但我无法弄清楚如何解雇它。 我尝试了下面的代码,希望能够轻扫以解雇,但无济于事。
prev_p
(照片是MWPhoto的数组)
有人能指出我的解决方案吗?感谢。
答案 0 :(得分:1)
考虑到您无法修改MWPhotoBrowser
。您可以通过在
let windowButton: UIButton = UIButton(type: UIButtonType.custom)
let browser:MWPhotoBrowser? // declared outside functions
self.present(browser, animated: true, completion: {
self.windowButton.frame = CGRect(x: 20, y: 100, width: 50, height: 50)
self.windowButton.backgroundColor = UIColor.brown
self.windowButton.addTarget(self, action: #selector(self.dismissFunc), for: UIControlEvents.touchDown)
if let window:UIWindow = (UIApplication.shared.delegate?.window)! {
window.addSubview(self.windowButton)
}
})
func dismissFunc() {
self.browser.dismiss(animated: true, completion: {
self.windowButton.removeFromSuperview()
})
}