Novice programmer, currently working on an ios app using firebase as our backend. I\'m trying to grab values from the firebase database to populate a TableView, but there are tw
Can you try to change this:
let sectionRef = FIRDatabase.database().reference().child(String(indexPath.section))
to this:
let sectionRef = FIRDatabase.database().reference(withPath: "Committee").child(String(indexPath.section))