I am trying to take a printed item and inserting it into my Firebase Database along with the rest of outlets. Thanks!
@objc(imagePickerController:didFinishPickingMediaWithInfo:) func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any])
{
    if let image = info[UIImagePickerControllerOriginalImage] as? UIImage {
        myImageView.image = image  
    } else {
        //error
    }
    self.dismiss(animated: true, completion: nil)
    let storageRef = FIRStorage.storage().reference().child("myImage.png")
    if let uploadData = UIImagePNGRepresentation(self.myImageView.image!) {
        storageRef.put(uploadData, metadata: nil, completion:
        {
                (metadata, error) in
                if error != nil {
                    print("error")
                    return
                } else {
                    print((metadata?.downloadURL()?.absoluteString)!)
                   //i want to take the line above and insert it into the database
                }
        })
     }           
}
@IBAction func addPost(_ sender: Any) {
    if self.titleText.text != "" && self.authorText.text != "" && self.mainText.text != "" && self.dateText.text != "" {
        ref?.child("Posts").childByAutoId()
                           .setValue(["Title": titleText.text,
                                      "Article": mainText.text,
                                      "Author": authorText.text,
                                      "Date": dateText.text ])
        //insert the download URL above 
        self.performSegue(withIdentifier: "kost", sender: self)    
    }
}