Protocol Oriented Programming in SwiftProtocol-Oriented Programming also known as POP is a powerful paradigm in Swift that is useful for code reusability, extensibility, and flexibility. POP focuses on protocols and protocol extensions to define code behavior. This article will dive deep...Sep 18, 2023·6 min read
Action Sheets in SwiftUIAction Sheets allow you to show a popover over the current view presenting the user with certain options to select. In SwiftUI, you can implement action sheets using .actionSheet view modifier. You can observe the usage of action sheets through iOS, ...Feb 16, 2023·3 min read
Links in SwiftUIIn Apps, there are many scenarios where you want to open a link, the link can be a web link, a link to an external app like mail, or phone, or any deep link. In this article, we will be take a look at Link API provided by SwiftUI to handle a differen...Feb 15, 2023·3 min read
Swift native base class NSObjectDescription The root class of most Objective-C class hierarchies, from which subclasses inherit a basic interface to the runtime system and the ability to behave as Objective-C objects. It's the one class that has no superclass. Core Responsibility: ...Feb 14, 2023·2 min read
UIView Fundamentals Masterclassn this article, you will learn about the basics of UIView. In addition, you will learn the purpose of UIView and initialization and implementation of UIView along with some practical examples. Also, how view create an hierarchy tree to render it on s...Feb 13, 2023·4 min read
Context Menu in SwiftUIContext menus are basically peek-and-pop interactions and can be a great add-on to the UI elements in your app and can enhance the experience. Context menus works pretty much like Menus in SwiftUI. An analogy you could use is that context menu and me...Feb 9, 2023·3 min read
How to convert Radians to Degrees in Swift?When working with rotating view animations or 2d/3d games, you would have to eventually deal with degrees and radians at some point. There are rare scenerios where you would have to convert radians to degrees since most of the angles are dealt in rad...Feb 8, 2023·2 min read