Sep 02, 2021 swiftui

Swiftui list Selection : Row Selection in SwiftUI

selection list of  Particular Row in SwiftUI. Swift Supports both single selection and as well as multiple Selection in List.Swiftui list Selection Earlier we used to have tableView DidSelect method in Storyboard but now we have list we can add…

Sep 02, 2021 iOS

How to Setup the Product Flavour in iOS Xcode

Creating a Different Product Flavors in iOS Product Flavour in iOS :Whenever we are creating a iOS App we needed to create different build in different Environment. multiple Environment are of different Http request they may be UAT, Sit or…

Sep 02, 2021 swiftui

how to use multiple font size text in SwiftUI

 Use multiple Font text in swiftui fonts In swift we used to add two different label for different font. this can be achieved in swiftui fonts. We can add this in below format in SwiftUI. struct ContentView: View {  …

Aug 30, 2021 swiftui

How Can we implement Pull to refresh in SwiftUI

Pull to Refresh in SwiftUI Earlier in storyboard we were used to UIRefreshControl() which was using this observer we would load the tableview by calling the tableViewreloadata() let refreshControl = UIRefreshControl() override func viewDidLoad() {    super.viewDidLoad()    refreshControl.attributedTitle =…

Aug 28, 2021 interview

iOS push notification interview questions and Answers

Apple Push Notifications Interview Questions and Answers Here are the apple push notification interview questions for fresher and experience candidate.voip push notifications ios What is NSNotification?   An Object Which Contains information broadcast to registered observers that bridges to the notification.…

Aug 28, 2021 interview

iOS interview Questions swift and Answer : Part 3

 Technical swift interview Question and Answer for iOS developer: Part 3 iOS interview Questions swift and Answer for experience and fresher candidate iOS interview questions swift for experience student for preparation of job interview 1 .What is ARC (Automatic Reference…

Aug 26, 2021 interview

Swift interview questions for iOS developer

1: What is Swift's type inference, and how does it benefit developers? Answer: Swift's type inference is a feature that allows the compiler to automatically deduce the data type of a variable or expression based on its value and context.…

Aug 26, 2021 interview

Swift interview Question and Answer for iOS developer: Part 2

 Technical ios interview questions for experienced swift : Part 2 Swift interview Question for ios developer  21What design patterns are commonly used in iOS apps? Ans: Typical commonly used patterns when building iOS applications are those that Apple advocates for…