我正在做一个游戏,当你按下开始按钮,它带你到游戏场景,然后随着游戏结束,重播按钮将出现在屏幕上,当重播按钮被按下,它将带我到主屏幕,而不是在我的游戏场景。经过几个小时的浏览,我发现了一些与我正在寻找的东西有关的东西,但它在objective-c中。objective-c中的代码在下面,请告诉我它在swift中的含义,因为我根本不熟悉objective-c。
(IBAction)prepareForUnwind:(UIStoryboardSegue*)sender
{
UIViewController *sourceViewController = sender.sourceViewController;
// Pull any data from the view controller which initiated the unwind segue.
}
最佳答案
这是您的swift代码:
@IBAction func prepareForUnwind(segue: UIStoryboardSegue) {
let sourceViewController = sender.sourceViewController
}