Swift

The below code example in Swift demonstrates how you can extend classes in Swift. Extending Class in Swift As an example, let’s learn how we can extend class Int.  Create a new Swift file in your current project and add there the following extension with a function that substructs a value. extension Int { func…

Read More Extending Classes in Swift. Class extension.

In Swift, a class or a struct can have multiple initializers which are used to create an instance of that particular type and set up its initial state. The code examples below show how to define a class with single or multiple initializers and how to create an instance of that class. Single Initializer class…

Read More Swift Class with Single and Multiple Initializers

hisI am becoming a big fun of Serverless architecture in the cloud and recently started reading a lot on how to build RESTful Web Services in the Cloud without starting your own server. Of course, I quickly came across Firebasebase Cloud Functions and I liked it a lot. Firebase Cloud Functions is one of those…

The post Firebase Cloud Functions with Swift appeared first on Swift Developer Blog.

Read More Firebase Cloud Functions with Swift

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…

The post Silent Remote Notifications with Swift and Firebase appeared first on Swift Developer Blog.

Read More Silent Remote Notifications with Swift and Firebase

The category “Swift” has been updated with a few very useful links which contain many video tutorials and code examples that will help you build many features for your mobile application with Swift. User registration, sign in and sign out video tutorials The set of 15 video tutorials on how to create user registration, login and logout will…

Read More Swift Video Tutorials and Code Examples