@IBAction func othersLocation(_ sender: Any) { ref.child("test").observeSingleEvent(of: .value, with: { (snapshot) in let value = snapshot.value as? NSDictionary let a = value?["userTest"] as? Double let b = value?["userTest2"] as? Double print("位置情報を取得しました") }) //Use of unresolved identifier 'a' if let c = a { Use of unresolved identifier 'b' if let d = b { //省略 } } }
この様にデータベースから取得したデータを新しくc,bとして宣言して使いたい時
Use of unresolved identifier 'c'
Use of unresolved identifier 'd'
とエラーが出てしまうんですが、どの様に宣言したら良いですか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/11/24 03:01
2019/11/24 03:09
2019/11/24 20:52