我正在尝试执行将由ui视图之外的另一个类调用的segue。最终目标是主视图将等待URL请求完成后再转到下一个视图。
这是我的ui视图:
class LoadingViewController: UIViewController {
@IBOutlet weak var activityIndicator: UIActivityIndicatorView!
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
CardList.retrieveAllCards()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
func goToNextView() {
performSegue(withIdentifier: "segueToMainController", sender: LoadingViewController.self)
}
class ShowNext {
class func view(fromViewController: LoadingViewController) {
fromViewController.goToNextView()
}
}
}
在这里我如何称呼我的另一班学生
let task = session.dataTask(with: request){
data,response,error in
do
{
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
jsonResultEnd = jsonResult
//print("SUCCESS:\(jsonResult)")
LoadingViewController.ShowNext.view(fromViewController: LoadingViewController())
print("loading ended")
}
} catch let error as NSError {
print("ERROR request manager: \(error.localizedDescription)")
}
}
这是错误
***由于未捕获的异常'NSInvalidArgumentException'而终止应用程序,原因:'Receiver()没有标识为'segueToMainController的segue”
最佳答案
实例化一个新的LoadingViewController
并尝试将其传递到类函数中没有任何意义。您需要做的是获得对现有LoadingViewController
的引用,然后在其上调用goToNextView()
。
有很多方法可以执行此操作,但是一种方法是将对LoadingViewController
的引用作为变量传递给另一个视图,并且当异步调用完成时,您可以调用self.loadingViewController.goToNextView()
。
您还可以使用NotificationCenter
从视图中广播此异步调用已完成,并在LoadingViewController
上观察该通知,并使用该事件触发segue:
在您的LoadingViewController
的viewDidLoad
方法中:
NotificationCenter.default.addObserver(self, selector: #selector(goToNextView), name: Notification.Name("loadingComplete"), object: nil)
在您其他视图的异步回调中:
NotificationCenter.default.post(name: Notification.Name("loadingComplete"), object: