Jan 17, 2023 iOS
Flutter interview questions and answers
1.What is Flutter and what are its advantages? Flutter is an open-source mobile app development SDK created by Google. It uses the Dart programming language and allows developers to build high-performance, cross-platform applications for iOS and Android with a single…
Nov 21, 2022 iOS
What is NSURLSession & URL Session and Networking?
What is NSURLSession? How is it used? Ans: NSURLConnection became obsolete and the new Apple standard for implementing HTTP networking is NSURLSession. NSURLSession and related classes do a lot of heavy lifting for basic HTTP connection and authentication for you.…
Oct 15, 2022 iOS
How to use Swiftui searchable
The SwiftUI searchable () tweak adds a search bar directly to a NavigationView, which will either remain fixed for simple layouts or appear and scroll when used with a list. Prior to iOS 15, SwiftUI did not have a built-in…
Oct 11, 2022 iOS
How to use SwiftUI AsyncImage
How to use SwiftUI AsyncImage : Images and videos power almost all contemporary apps and websites. All of the visuals you see on social networking, entertainment, and commerce applications come from a backend source. Since several backend calls are required…
Oct 04, 2022 iOS
What is Stored and Computed property in swift
In Swift, Computed Property are a subset of a larger family of property types. The most popular properties are those that save and return a stored value; Computed properties work a little differently. When learning to programme in Swift, all…
Sep 28, 2022 iOS
why swift is protocol oriented programming?
Why swift is called Protocol Oriented language or Protocol Oriented Programming ? Protocol Oriented Programming: This design approach works, but does come with some drawbacks. For example, if you add the ability to create machines that also require gas, birds…
Sep 19, 2022 iOS
Working with SwiftUI NavigationView and NavigationStack SwiftUI
SwiftUI NavigationView and NavigationStack SwiftUI : SwiftUI is a declarative data-driven framework that allows us to create complicated user interfaces by describing how data is shown on the screen. From the beginning, the framework's biggest pain point was navigation. Fortunately,…
Sep 11, 2022 iOS
Show progress of the task using SwiftUI ProgressView
Many of our programmes perform intensive background tasks like data processing or networking. We often wish to show the status of the task in progress or an activity indicator. This week, we'll discover how to use SwiftUI ProgressView to show…