如何使用Sprite Kit
Xcode模板使用Game Center或GameKit Framework?在Sprite工具包中,它使用场景;但通常要查看排行榜,例如你需要“presentModalViewController”,但这在SKView中是不可能的.
提前致谢!
解决方法
斯米克指出我正确的方向,因为我遇到了类似的问题.我需要从我的SKScene向主ViewController发送一条消息.这样做对我来说:
在SKScene中,导入ViewController
#import "MyViewController.h"
然后发一条消息:
[(MyViewController *)self.view.window.rootViewController myMethod];
您可以尝试在ViewController中创建一个方法,为您打开GameKit视图,该视图由SKScene触发.谢谢Smick!