swift 中 performSelector 的替代方法是什么?
What is alternative to performSelector in swift?
[[[UIApplication sharedApplication] 委托] performSelector:@selector(showMainView)];
我在 iOS swift 项目中使用具有上述代码的 API,但找不到如何将其写入正确的 swift 代码. swift 似乎没有名为 performSelector 的函数,所以我该怎么做才能让它在 swift 中工作?
你应该试试这个:
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate
appDelegate.showMainView()
[[[UIApplication sharedApplication] 委托] performSelector:@selector(showMainView)];
我在 iOS swift 项目中使用具有上述代码的 API,但找不到如何将其写入正确的 swift 代码. swift 似乎没有名为 performSelector 的函数,所以我该怎么做才能让它在 swift 中工作?
你应该试试这个:
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate
appDelegate.showMainView()