Posts by Aryan

Author Biographical Info: Not available

Parsing a JSON Array in Swift

By Aryan

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

Tuples in Swift

By Aryan

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

Closures in Swift

By Aryan

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

Nested Functions in Swift

By Aryan

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

Dictionaries in Swift

By Aryan

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

How to show image in SwiftUI

By Aryan

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

How to comment in Swift

By Aryan

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

How to play an MP3 File in Swift

By Aryan

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

Related Posts