Aug 20, 2021 swiftui

How Can we use Swiftui slider

 Use of Slider in SwiftUI SWiftUI Slider : Earlier in Xcode we were using Slider in Storyboard or Xib.But As Apple Introduce SwiftUI Use of UIKit and Storyboard has been Depreciated in SwiftUI.   We can use the SwiftUI Slider in…

Aug 20, 2021 swiftui

How To use AppDelegate In SwiftUI

 How To Add AppDelegate In SwiftUI Today we going to start use of AppDelegate In SwiftUI. As inWWDC 2020 Apple does not provide default AppDelagate in swiftUI anymore. Xcode has come up with the App instead of AppDelegate. We can…

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 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 19, 2021 Stack

How to use Stack in SwiftUI

 Stack in SwiftUI Today we are going to start with use of the Stack in SwiftUI. As Apple has introduce SwiftUI the use of Storyboard and Xib has been eliminated.Thus to construct the View SwiftUI has introduce Stack in 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…

Jul 29, 2021 swiftui

How to create a TableView in SwiftUI using List and VStack

Hi Guys Today we going to start with Add the TableView using SwiftUI. At WWDC 2020 Apple introduce SwiftUI LazyVStack . we can develop the Tableview using List as well as VStack. Lets start with the TableView in SwiftUI using…

Jul 21, 2021 swiftui

How to add Image in Launch Screen in SwiftUI

Hi Guys Today we going to implement the launch Screen (Splash Screen ) in SwiftUI, A Launch screen is the important screen in iOS Application . Initially the While Creating the new Xcode project,   Xcode would automatically generate LaunchScreen.storyboard  to design the  launch screen…