Dec 20, 2021 iOS

What does application lifecycle in iOS consist of?

 What is life cycle of iOS application? Ans: Application lifecycle in iOS : the most purpose of entry into iOS apps is UIApplicationDelegate. UIApplicationDelegate could be a protocol that your app must implement to induce notified regarding user events like…

Dec 19, 2021 Swift

What are the Access Control in SwiftUI

  What is swift access control? Access control : As Define Access Control in Swift  used to restrict the access the part of the code in other file or module. The feature of access control is to hide the detail…

Dec 16, 2021 Swift

What is Push Notification in swiftUI How does it works

  Push notification in swift using firebase How does it works   An app enables Push Notification in swiftUI. The user has to confirm that he wishes to receive these notifications. The app receives a “device token”. You can think…

Nov 26, 2021 iOS

What is View Controller ? What is its lifecycle?

What is View Controller Life cycle in swift? Ans: View Controller Life cycle swift : View Controllers (VC) are the Controller part of the MVC(Model View Controller) triangle. They are responsible for controlling the view. Every time you want to…

Oct 08, 2021 Stack

How to use vstack align and Layout in SwiftUI

swiftui vstack alignment How can we customise the Vstack align autoLayout in SwiftUI. we are going to code with the SwiftUI alignment with Stack Vstack Spacing in SwiftUI Consider the VStack We can add the Spacing to the VStack. We…

Oct 03, 2021 iOS

Simple Chat Application in iOS Swift

  Chat App using swift xcode Hi Guys Today We are going to develop Chat Application for iOS using Swift.Tool  Here used is Xcode. Let's start with the building of Chat App for iOS. Initially open the Xcode Project Click…

Sep 20, 2021 interview

What is Core Data with Swift Interview Question

 What is Core Data in Swift ? Core Data Stack Core data with swift uses SqLite as  local DataBase Storage in iOS. it is the frameWork used to save, modify and track the data within our application. Core data allows…

Sep 17, 2021 swiftui

Add the text and image side by using label in SwiftUI

Today We are going to show text and image side by side in SwiftUI.This We can only implement in Xcode 13 and above. Swiftui label image on right To start with we needed to define the Label in the body…