Hello, I'm new on iOS development. I watched some swiftui tutorial videos on YouTube and now I want to start developing my first app that is related to store/display images and videos.
Is it good to use firebase to store the uploaded images/videos?
If no, what is the best solution for such application?
thanks in advance
Storing Images and Videos
Firebase is an easy to implement option. Just note that some of the things with firebase are out of date. For example, if you use firebase and follow their process, you'll put the code for Firebase.configure() inside AppDelegate.swift. Last time I used firebase that was slightly out of date. Alternatively, other database vendors exist. You could use CloudKit which is native to Apple, or use something like Vapor and set it up yourself. There's a load of different database vendors you could use for a backend. However, Firebase or CloudKit are probably the two easiest to use in terms of extensibility in swift.