PinnedBuilding a generic Swift StackLet's build a basic Stack data structure with Swift. We will have to cover a couple of core concepts: Generics in Swift, and Basic Stack operations. Let's get started! First, let us create the basic data structure that we will add to class Stack<T> { } Things to know about…Swift2 min read
Nov 12, 2020SwiftUI Basics: StateIn SwiftUI, views can keep state, meaning they can describe the content of the view in terms of the current state of some property inside of the view. Use the @State property wrapper before any property in a view struct to mark it as a state variable. The code…I OS App Development3 min read
Oct 31, 2019Devtember !Devtember ! So it’s easy to get into ruts right? We go to class, we come home, we eat, we do our homework, and that’s it. By doing this the only thing we learn about development is what is taught to us in class. All of this is important of…Programming2 min read