Firebase Storage: Using Download Url Instead of Storage Ref
问题 I have an iOS app that uses Firebase Storage for storing images. After an image is uploaded I save its storage reference in my Firebase Database . When the app loads, it fetches various storage references from the database and uses the FirebaseUI method to display their corresponding images like so: let storageRef = Storage.storage().reference(forURL: imageUrl) imageView.sd_setImage(with: storageRef, placeholderImage: nil) This works great... but its very slow. While looking for solutions to