Swift

This blog post is more of a cheat sheet type on how to use UIImagePickerController in Swift with Firebase to upload a user profile image to Google cloud. I am also going to include here a video demonstration taken from my video course “Firebase and Swift: Practical examples“. This video will demonstrate the use of the below code…

Read More UIImagePickerController in Swift with Firebase. Cheat Sheet.

This page lists down different Swift code snippets which demonstrate how to work with Firebase Realtime Database. I like to have this page handy when working a mobile app for iOS platform with Swift and Firebase. Set up Firebase Realtime Database Dependencies to install with Cocoapods pod ‘Firebase/Database’ Configure a FirebaseApp shared instance, in your application’s…

Read More Firebase Realtime Database Cheat Sheet

With this blog post, I would like to share with you how to send Silent Push Notification using CURL or Postman HTTP client via Firebase Cloud Messaging and how to receive silent push messages in your mobile app built with Swift. Silent push messages when received by your mobile app are not displayed to user…

Read More Silent Remote Notifications with Swift and Firebase

I was chatting with one of my Youtube channel followers the other day and he asked me to publish a very simple example of how to prompt a user with a dialog message and a question “Are you sure you want to delete this?“. This dialog window should be presented when user taps on Delete button.…

Read More UIAlertController – Confirmation Dialog in Swift