Optionals in Swift ( ! ? )
What Is an Optional Optionals in Swift , The underlying concept of an optional is easy to grasp. An optional acts as a container for a value of a particular type. The container holds a value or it doesn’t. Type safety is a cornerstone of the Swift…
Conditionals in Swift ( If, Else If, Else )
Conditionals in Swift, Conditionals to make decisions in your Swift code, with if, else if, and else. If this happens, then do that. This is called control flow because you use it to control the way your code flows. In this tutorial, you’ll learn how to…
First APP with Xamarin and Windows or MAC with C#
WINDOWS Download and install First APP : During installation, select the Mobile development with .NET workload. Already have Visual Studio? Select the Windows key, type Visual Studio Installer, and press Enter If prompted, allow the installer to update…
What is the Property List or plist in IOS .
For me and Every IOS App developer like me, info.plist or property list is a well-known file for them. it’s not just a file but a bundle of instructions wrapped in a file. What is plist file Property List file is a structured text file that…
Whats New in the iOS 15 ?
Whats New in the iOS 15 In iOS 15 SDK, you can build apps that create new kinds of shared experiences with SharePlay and the Group Activities API. Swift 5.5 introduces concurrency support, built into the language with async/await and Actors. SharePlay…
What’s new in Swift 5.5?
In the latest edition of swift programming language, there are some changes in the latest version of Swift 5.5 What’s new in Swift 5.5? are these changes will impact the current syntax or code? is the changes are minor or major? Read Also :…
Evolutions of Swift Programming Language
Evolutions of Swift is a general-purpose, multi-paradigm, compiled programming language developed by Apple Inc. and the open-source community, first released in 2014. Swift was developed as a replacement for Apple’s earlier programming language…
How to insert Placeholder in UITextView
Placeholder in UITextView is something that is required to help user understand what the control is for. Placeholder in iOS is the information text used to represent user of View. Placeholder is the instance property of TextField in iOS but as we know…
How to Set Left/Right Padding in UITEXTFIELD in IOS
There is a common ISSUE (How to Set Left/Right Padding in UITEXTFIELD in IOS ) we always faced while designing a IOS form and that is Padding and Margin of a UIControl. Either way we faced the same issue whether we use Storyboard or Programmatically we…