我不确定如何在我的应用中的任何地方重复使用登录视图...所以当我在任何屏幕上点击登录时我都可以登录然后让视图解除...我想我是'我没有找到关于在整个应用程序中模态显示公共视图的教程...
答案 0 :(得分:0)
这应该可行。
在登录视图控制器中定义您的视图。
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("loginViewController") as! UIViewController
每当您想要显示登录屏幕时出现。
self.presentViewController(vc, animated: true, completion: nil)
答案 1 :(得分:-1)
试试这个..(您可以创建loginViewController的单个实例,并在app的任何位置使用此代码。)
public static void main(String[]args){
class1.method1(); // this will run first until it totally gets completed
class1.method2(); // Now this method will run
}