Swift Language
Array
• Declare an array
• Declare an empty array
• Access an array value
• Add an element to an array
• Remove an element from an array
• Declare multidimensional array
• Loop through an array
• Get Index of specific element in array
• Get number of elements in array
• Sort array
• Check if array is empty
• Call a function for each element
• Search an element in an array
• Remove duplicate

Dictionnary
• Declare a dictionnary
• Declare an empty dictionnary
• Access an element of a dictionnary
• Add an element to a dictionnary

Tupple
• Declare a tupple
• Access an element of a tupple

Loop
• For
• While
• Repeat...While
• Break statement
• Continue statement

Condition
• If statement
• Ternary operator
• Comparison operators
• Logical operators

Function
• Function
• Function with parameters
• Function returning a value

Struct
• Declare a Struct
• Create a Struct
• Access an element of a Struct
• Function in a Struct

Time
• Get current date and time
• Format date into a custom date format
• Get the user timezone
• Convert timezones
• Custom date formatting patterns

Async & Concurrency
• Async function and completion handler
• Async await

Animation
• UIView.animate

Other useful Swift concepts
• Code execution on textfield change
• Get device width and height
• Delay Delayed code execution
• Hide home indicator



Tutorials | Navigation
Multiscreen Navigation
How to set up an app with multiple screens.

Segue Navigation
A segue is a visual connector between two view controllers in the storyboard.

It allows to present one view controller from another.

Remove ViewController Navigation
In order to go back to the previous View Controller, the new View Controller is dismissed if it was presented modally while we navigate back to the previous controller if it was pushed.

Navigation Bar
A navigation bar is a bar, typically displayed at the top of the window, containing buttons for navigating within different screens.



Tutorials | Views
Tableview (default)
Table views displays rows of vertically scrolling content in a single column.

For example, the Contacts app displays the name of each contact in a separate row. You can configure a table to display a single long list of rows, or you can group related rows into sections.

Tableview (custom cells)
In a table view, cells correspond to the content model of your table’s rows.

While Xcode provides a default prototype cell for each table, we can also design custom cells including custom elements.

Pickerview
A picker view displays one or more wheels that the user manipulates to select items.

The UIDatePicker class uses a custom subclass of UIPickerView to display dates and times.

Scrollview
A scroll view is a view with an origin that’s adjustable over the content view. It clips the content to its frame, which generally (but not necessarily) coincides with that of the app’s main window. A scroll view tracks the movements of fingers, and adjusts the origin accordingly.

Stackview
A Stack view is an interface for laying out a collection of views in either a column or a row in a way that the views are automatically adjusted to the available space using properties such as alignment, distribution and spacing. It also allows for adding or removing views from a view during runtime and adjust the layout of views beside it.

Collectionview
A Collection Views manages ordered collections of data items and use customizable layouts to present them.

Modal View
A modal view is a popup window that appears on top of the main screen with a layer of blurred transparency behind it, which gives users a peek into the underlying screen.



Tutorials | Controls
Stepper
A stepper control increments or decrements a value by 1 within a prescribed range. It allows the user to have granular control over a value.

Slider
A slider control displays a horizontal bar, called a track, that represents a range of values. The current value is shown by the position of an indicator, or thumb. The user selects a value by sliding the thumb along the track.

Switch (Toggle)
A switch control displays an element that shows the user the boolean state of a given value. By tapping the control, the state can be toggled.



Tutorials | Medias
Play video
Play a video file once with AVPlayeror a video on loop with AVPlayerLooper

Play an audio file
Play a local audio file

Audio recording
Record audio with the microphone and play the recording

Text to speach
Read a text aloud with a digital voice which simulates a human voice



Tutorials | Communication
WhatsApp
Launch WhatsApp from your app through a URL link. The pre-filled message will automatically appear in the text field of a chat. If your link contains a phone number, it will automatically initialize the chat with the correspinding user.

SMS
Launch iPhone SMS editor from your app through a URL link. The pre-filled message will automatically appear in the text field. If your link contains a phone number, it will automatically initialize the SMS editor with the correspinding user.

Email (Apple Mail)
Send a prefilled email from the internal Apple Mail application.

Email (External Server)
Send a prefilled email from an external server.



Tutorials | Others
Loading screen
Display a Progress HUD (Heads Up Display) as a loading screen indicator in order to give the user an indication that content is being loaded.

By displaying a HUD, the user is aware that an operation is in process (for instance: a network request to fetch data).

User onboarding flow
User onboarding is the stage where the app is introduced to a new user and they become familiar with it.

This phase corresponds to the user’s very first experience with the app through several onboarding screens, where the user is expected to be shown the app functionalities and taught what to do.

Dissmiss keyboard
How to move the cursor into the next textfield when the user is pressing the return.

How to hide the keyboard when the user is pressing the return key on the last textfield.

How to hide the keyboard when the user is taping on the background outside of the textfield.

Display alert window
Display an alert interactive pop up window to the user.

The pop-up window contains a message and a menu of commands such as "OK" and "Cancel".

Tap gesture on label
Add a Tap Gesture to a label so that a code is executed when the user tap on the label.

Internet connection
Function to verify if the device is connected to Internet.