作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试登录 GameCenter 我的应用程序。我收到错误:
Value of type 'GameScene' has no member 'presentViewController' when trying to present the view controller.
我的认证功能
func authPlayer(){
let localPlayer = GKLocalPlayer.localPlayer()
localPlayer.authenticateHandler = {
(view, error) in
if view != nil {
self.presentViewController(view!, animated: true, completion: nil)
}
else {
print(GKLocalPlayer.localPlayer().authenticated)
}
}
}
最佳答案
self.presentViewController
仅当 self
是 UIViewController 的子类时才有效。
此外,如果 view
是 UIView 而不是 UIViewController,则:
self.presentViewController(view!, animated: true, completion: nil)
也不会工作,除非 view
命名不当并且实际上是 UIViewController 子类。这不是 GameKit 特有的。 iOS UI 层次结构的基础知识是:
App -> Key Window -> Root View Controller -> Child View Controller -> Root View
您可以有许多 subview Controller ,但每个 View Controller 只有一个 subview Controller 。每个 UIViewController 都有一个或多个 UIView,并且这些 View 可以有一个或多个 subview ,具体取决于其类型和性质。
关于ios - 验证玩家时无成员 'presentViewController',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36985913/
我目前有一个功能可以从远程 url 抓取 mp3 文件,并将其上传到 Amazon S3 存储桶。 该函数似乎工作正常,因为该文件出现在 S3 中,但是我担心在我的本地服务器上使用隧道 (ngrok)
我是一名优秀的程序员,十分优秀!