いつも大変お世話になっております。
日常の出来事にかかった費用を記録していくアプリを作っています。
データの挿入時にtitleに出来事の名前、moneyに金額、descriptionに詳細、uidに匿名ログイン中のuser_idを入れています。indexViewControllerでデータベースから現在ログインしているユーザーが登録したデータをフェッチし、最終的にpatientsArrayにデータの配列を追加しようとしています。しかし全然うまく行かず、試しにsnapのログを出してみたところ、何も表示されませんでした。おそらくデータをとりだすfetchDataメソッドに欠陥があるのだと思いますが、いくら調べても有効なサイトが出てきません。
どのように修正をしていけばいいでしょうか?
大変恐縮ですがご回答よろしくお願いいたします。
*データを挿入しているのがInputViewControllerでデータを取り出そうとしているのが、IndexViewControllerです
InputViewController
InputViewController
1import UIKit 2import Firebase 3 4class InputViewController: UIViewController { 5 var uid = String() 6 @IBOutlet weak var titleTextField: UITextField! 7 @IBOutlet weak var moneyTextField: UITextField! 8 @IBOutlet weak var descriptionTextField: UITextField! 9 override func viewDidLoad() { 10 super.viewDidLoad() 11 12 uid = Auth.auth().currentUser!.uid 13 14 // Do any additional setup after loading the view. 15 } 16 17 @IBAction func register(_ sender: Any) { 18 19 let title = titleTextField.text! 20 let money = Int(moneyTextField.text!) 21 let descriotionString = descriptionTextField.text! 22 23 insertData(title: title, money: money!, description:descriotionString, uid:uid ) 24 25 let indexVC = (self.storyboard?.instantiateViewController(identifier: "index"))! as IndexViewController 26 present(indexVC, animated: true, completion: nil) 27 28 29 30 } 31 func insertData(title:String,money:Int,description:String,uid:String) { 32 let patienceDB = Database.database().reference().child("patiences") 33 let patienceInfo = ["title":title,"money":money,"description":description,"uid":uid,] as [String : Any] 34 patienceDB.childByAutoId().setValue(patienceInfo) 35 } 36 37 38 /* 39 // MARK: - Navigation 40 41 // In a storyboard-based application, you will often want to do a little preparation before navigation 42 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 43 // Get the new view controller using segue.destination. 44 // Pass the selected object to the new view controller. 45 } 46 */ 47 48} 49
IndexViewController
IndexViewController
1import UIKit 2import Firebase 3 4class IndexViewController: UIViewController { 5 6 var patientsArray = [Patiences]() 7 let uid = Auth.auth().currentUser!.uid 8 9 override func viewDidLoad() { 10 11 super.viewDidLoad() 12 13 14 } 15 override func viewWillAppear(_ animated: Bool) { 16 super.viewWillAppear(true) 17 18 fetchData(uid: uid) 19 } 20 21 func fetchData(uid:String){ 22 let ref = Database.database().reference().child("patiences").childByAutoId().child("uid") 23 ref.queryEqual(toValue:uid, childKey:"uid").observe(.value) { (DataSnapshot) in 24 let snapShot = DataSnapshot.children 25 for snap in snapShot { 26 print(snap) 27 self.patientsArray.append(snap as! Patiences) 28 } 29 } 30 } 31 32 33 /* 34 // MARK: - Navigation 35 36 // In a storyboard-based application, you will often want to do a little preparation before navigation 37 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 38 // Get the new view controller using segue.destination. 39 // Pass the selected object to the new view controller. 40 } 41 */ 42 43} 44 45
Patiencesモデルクラス
Swift
1import Foundation 2 3class Patiences{ 4 5 var title = String() 6 var money = Int() 7 var description = String() 8 var childId:String? 9 10 init(title:String,money:Int,description:String,childId:String){ 11 self.title = title 12 self.money = money 13 self.description = description 14 self.childId = childId 15 16 17 } 18 19 20} 21
あなたの回答
tips
プレビュー