0
0
iOS Swiftmobile~5 mins

Cloud Storage in iOS Swift - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Cloud Storage in mobile app development?
Cloud Storage is a service that lets apps save and retrieve files or data on internet servers instead of the device. It helps keep data safe and accessible from anywhere.
Click to reveal answer
beginner
Name a popular Cloud Storage service used in iOS apps.
Firebase Storage is a popular Cloud Storage service for iOS apps. It allows easy upload and download of files like images and videos.
Click to reveal answer
beginner
Why use Cloud Storage instead of local device storage?
Cloud Storage keeps data safe even if the device is lost or damaged. It also allows sharing data across devices and users easily.
Click to reveal answer
intermediate
What is a common step before uploading a file to Cloud Storage in Swift?
You usually convert the file (like an image) into Data format and then use the Cloud Storage API to upload that data.
Click to reveal answer
intermediate
How can you secure files in Cloud Storage?
You secure files by setting rules and permissions on who can read or write files. For example, Firebase Storage uses security rules to control access.
Click to reveal answer
What does Cloud Storage allow your app to do?
ADelete all local files automatically
BOnly save files on the device
CRun the app offline only
DSave files on internet servers
Which format is commonly used to upload images to Cloud Storage in Swift?
AData
BString
CUIImage
DInt
What is a benefit of using Cloud Storage over local storage?
AData is lost if device is damaged
BData can be shared across devices
CFiles cannot be accessed online
DIt uses more device memory
Which service is commonly used for Cloud Storage in iOS apps?
AFirebase Storage
BCore Data
CUserDefaults
DSQLite
How do you control who can access files in Cloud Storage?
ABy deleting files regularly
BBy storing files locally only
CBy setting security rules and permissions
DBy using only public URLs
Explain how Cloud Storage benefits mobile apps compared to local storage.
Think about what happens if a phone is lost or you want to use the app on another device.
You got /4 concepts.
    Describe the basic steps to upload an image file to Cloud Storage in an iOS app using Swift.
    Focus on how the image is prepared and sent to the cloud.
    You got /3 concepts.