Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. let refEmployees = Database.database().reference(withPath: "Employees")
  2.  
  3. refEmployees.child("Logan").observeSingleEvent(of: .value, with: {
  4. snapshot in
  5.  
  6. let shift = snapshot.value as? String
  7. self.shifts.append(shift!)
  8. self.workSchedule.reloadData()
  9. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement