AppDelegate
检查用户是否已登录,如果没有,则从用户在应用程序中的任何位置显示formSheet view
。
我该怎么做?
答案 0 :(得分:0)
您可以在appdelegate类
中使用类似rootViewController
的窗口属性
试试这个: -
if let rootVC = self.window?.rootViewController as? YourViewController {
//Add the code here to present signupviewcontroller as form sheet
}
如果您的rootVC为UINavigationController
而不是使用visibleViewController
的{{1}}属性
UINavigationController