9

我有一个主类,AddFriendsController运行以下代码行:

ErrorReporting.showMessage("Error", msg: "Could not add student to storage.")

然后我有这个ErrorReporting.swift文件:

进口基金会

class ErrorReporting {
    func showMessage(title: String, msg: String) {
        let alert = UIAlertController(title: title, message: msg, preferredStyle: UIAlertControllerStyle.Alert)
        alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
        self.presentViewController(alert, animated: true, completion: nil)
    }
}

显然,self在这里不起作用,并且给了我一个错误。我如何引用当前打开的视图控制器(即AddFriendsController在这种情况下),因为我希望在许多不同的 swift 文件中使用相同的方法?

谢谢。

4

3 回答 3

30

您可以为 UIApplication(例如)创建扩展方法,该方法将返回您的 topViewController:

extension UIApplication {

    static func topViewController(base: UIViewController? = UIApplication.sharedApplication().delegate?.window??.rootViewController) -> UIViewController? {
        if let nav = base as? UINavigationController {
            return topViewController(nav.visibleViewController)
        }
        if let tab = base as? UITabBarController, selected = tab.selectedViewController {
            return topViewController(selected)
        }
        if let presented = base?.presentedViewController {
            return topViewController(presented)
        }

        return base
    }
}

然后您的课程将如下所示:

class ErrorReporting {

    static func showMessage(title: String, msg: String) {
        let alert = UIAlertController(title: title, message: msg, preferredStyle: UIAlertControllerStyle.Alert)
        alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
        UIApplication.topViewController()?.presentViewController(alert, animated: true, completion: nil)
    }
}

方法需要static能够将其称为ErrorReporting.showMessage.

于 2016-10-13T08:48:59.977 回答
9

实际上,在我看来,视图控制器呈现操作应该在UIViewController实例上完成,而不是在模型类中。

一个简单的解决方法是将UIViewController实例作为参数传递

class ErrorReporting {
    func showMessage(title: String, msg: String, `on` controller: UIViewController) {
        let alert = UIAlertController(title: title, message: msg, preferredStyle: UIAlertControllerStyle.Alert)
        alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
        controller.presentViewController(alert, animated: true, completion: nil)
    }
}

并像下面这样称呼它

ErrorReporting.showMessage("Error", msg: "Could not add student to storage.", on: self)
于 2016-10-13T08:00:44.967 回答
9

Maksym Musiienko 的 Swift 3 版本的答案如下:

extension UIApplication {

    static func topViewController(base: UIViewController? = UIApplication.shared.delegate?.window??.rootViewController) -> UIViewController? {

        if let nav = base as? UINavigationController {
            return topViewController(base: nav.visibleViewController)
        }

        if let tab = base as? UITabBarController, let selected = tab.selectedViewController {
            return topViewController(base: selected)
        }

        if let presented = base?.presentedViewController {
            return topViewController(base: presented)
        }

        return base
    }
}
于 2017-05-24T06:40:53.213 回答