Category: Swift
Aug 24, 2021 firebase
Firebase InstanceID token Deprecated
Firebase InstanceID.instanceID().token() method is deprecated in AppDelegate.swift When we updated the pod file of the firebase InstantID was been depreciated . As the pod file gets updated the appdelegate gives the Capacitor error as No such module 'FirebaseInstanceID' due this can…
Aug 20, 2021 Swift
High Order Functions Swift (Sorted, Map, Filter, Reduce)
High Order Functions Swift : Higher order function are the function which operate on other function by taking the argument or return the function To reduce the complicity in swift, they have introduced Higher order function in swift. Higher order…
Aug 20, 2021 struct and classes
Difference between struct and class in swift – iOS
Structures and Classes in Swift Difference between struct and class in swift : Struct is basically know as value type object where as class is called as reference type object. Struct Struct is the value type object, it is the…
Aug 18, 2021 Swift
how to parse json in swift from URL and file
JSON Parsing from file and URL using swift Today we will start with the parse json in swift. We can host JSON in local as well as URL format. Initially we will start with the local Json. Step1 : Create…
Jun 14, 2021 Swift
How to set up Apple Pay in iOS Xcode
Setup Apple Pay in iOS Xcode Apple Pay tutorial swift 5 set up Apple Pay :Apple Pay is form of payment integration special used in iOS devices especially in iPhone Since making your own NFC payment framework wouldn’t go over excessively well…
May 25, 2021 iOS
Swift code documentation generator with Jazzy
Swift Documentation Generation Table of Content: Terminal Setup Install Ruby Swift code documentation generator Swift code documentation generator :Every programmer is obsessed with programming Documentation. To reduce this problem we can use jazzy Documentation. Swift requires documentation of code Swift…
May 25, 2021 Swift
Firebase dynamic linking in iOS swift Xcode
Hey team Today we going to start with Dynamic linking Setup in iOS. The Main concept of this approach is develop and design the Dynamic linking in the Application which works across the screens static and dynamic linking what is dynamic linking?…