Posts by Aryan
Author Biographical Info: Not available
JavaScript Object Notation, or JSON, is a text-based data format that is used to store and transfer data across web and local networks. JSON is the most popular data format used in.... Read More
In Swift, Tuples are another form of collection data type, that can store more than one value of different or same types. What makes Tuples unique from Arrays is that Tuples can st.... Read More
In this tutorial, we will cover the uses of closures in Swift. A Closure is a type of special function, unique to Swift, that can be made without the function name. It is basically.... Read More
Similar to Nested if-statements, when a function co-exists within the body of another function is called a Nested Function. There are 2 main parts to a Nested Function, the inner f.... Read More
This post is a deep dive into Dictionaries in Swift, we will discuss the structure as well as the utility of dictionaries in programming. A dictionary is basically another collecti.... Read More
In this tutorial, we will learn how to display an image in SwiftUI. We will learn about the 2 methods through which we can show an image. We will require 2 packages, pre-installed .... Read More
Documenting and commenting is a key aspect of software development, having a good habit of adding comments helps others understand the code better when working with others, and ove.... Read More
The basic Xcode firmware contains the AVFoundation module, but the constraint to using it is you will only able to play sound with “.wav” extension and is not able to play MP3 .... Read More