Posts from Swift

Split an array into chunks in Swift

By Khushi Aswani

In this tutorial, we will learn how to divide an array into smaller chunks of fixed size. We can do this easily by creating a function. But first, let’s dive into the example.... Read More

Create Multiline string in Swift

By Khushi Aswani

This tutorial will show us how to create a multiline string in Swift. A multi-line string is a string with more than one line. As we all know to declare a string, we need to enclos.... Read More

Filter array elements in swift based on if condition

By Aakanksha Thakar

This tutorial will see how to filter array elements based on the if condition in Swift. Arrays are data structures that store the data but are of the same data type. They are of fi.... Read More

Ways to compare two strings in Swift

By Khushi Aswani

In this tutorial, we will see how to compare two strings to determine if they are equal or not in Swift. There are so many practical applications of this task like comparing passwo.... Read More

How to create JSON object in Swift

By Saruque Ahamed Mollick

In this Swift programming tutorial, you will be learning how to create JSON objects. Here I am going to show you two different ways that can perform the task. To create a JSON obje.... Read More

How to get the last occurrence of a character in a string in Swift

By Aakanksha Thakar

In this tutorial, will see how to get the last occurrence of a character in a string in Swift. This task can be done easily with the help of in-built functions from Swift. Step 1: .... Read More

Call a function from another class in Swift

By Khushi Aswani

In this tutorial, we will create two classes and try to call a function from Class 1 in Class 2. This helps in various tasks of classes and their objects. We will create a class na.... Read More

Merge Dictionaries in Swift

By Khushi Aswani

This tutorial is all about merging dictionaries in Swift. As the title says merging dictionaries means we need to join or concatenate two dictionaries. Dictionary is a collection o.... Read More

Related Posts