質問編集履歴
1
fdghjkl
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
GameCenterが
|
1
|
+
GameCenterにログインすることができない
|
test
CHANGED
@@ -1,7 +1,31 @@
|
|
1
|
+
こちらの[サイト](https://qiita.com/moco3/items/d9c2a8956d4377bad264)を参考にGameCenterを試そうとしているのですがうまくいきません。
|
2
|
+
|
1
3
|
GameCenterを使ってみたいのですが認識されず困っています。
|
2
4
|
|
3
5
|
Siging & CapabilityesのところでGameCenterを追加したのですがダメでした。
|
4
6
|
|
5
|
-
|
7
|
+
### コード
|
6
8
|
|
7
|
-
|
9
|
+
以下のコードでボタンをタップした時にログインの画面を出そうとしているのですが出ない状況です。
|
10
|
+
|
11
|
+
```
|
12
|
+
|
13
|
+
let player = GKLocalPlayer.local
|
14
|
+
|
15
|
+
player.authenticateHandler = {(viewController, error) -> Void in
|
16
|
+
|
17
|
+
if viewController != nil
|
18
|
+
|
19
|
+
{
|
20
|
+
|
21
|
+
self.present(viewController!, animated: true, completion: nil)
|
22
|
+
|
23
|
+
} else {
|
24
|
+
|
25
|
+
print("viewController is nil")
|
26
|
+
|
27
|
+
}
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
```
|