質問編集履歴

1

情報修正

2019/11/25 18:42

投稿

globalplus
globalplus

スコア119

test CHANGED
File without changes
test CHANGED
@@ -54,8 +54,6 @@
54
54
 
55
55
  //DBから取得できていない
56
56
 
57
- //コンソール表示otherUserLatitude: nil otherUserLongitude: nil
58
-
59
57
  @IBAction func othersLocation(_ sender: Any)
60
58
 
61
59
  {
@@ -66,6 +64,8 @@
66
64
 
67
65
  let otherUserLatitude = value?["userLatitude"] as? Double
68
66
 
67
+ //コンソール表示otherUserLatitude: nil
68
+
69
69
  print("otherUserLatitude:", otherUserLatitude)
70
70
 
71
71
  })
@@ -75,6 +75,8 @@
75
75
  let value = snapshot.value as? NSDictionary
76
76
 
77
77
  let otherUserLongitude = value?["userLongitude"] as? Double
78
+
79
+ //コンソール表示otherUserLongitude: nil
78
80
 
79
81
  print("otherUserLongitude:", otherUserLongitude)
80
82