[[[UIApplication sharedApplication]委托] performSelector:@selector(showMainView)];
我在iOS swift项目中使用具有上述代码的API,但无法找到如何将其编写为正确的快速代码。似乎swift没有名为performSelector的函数,所以我能做些什么让它在swift中工作?
答案 0 :(得分:1)
你应该试试这个:
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate
appDelegate.showMainView()