Swift

Swift is a multipurpose, compiled programming language created by Apple Inc. for Linux and its operating systems. Swift is supposed to be simpler to read and write than other programming languages and more forgiving of mistakes.

Type inference, which enables the compiler to automatically determine the types of variables and expressions, generics, which enable programmers to write adaptable and reusable code, and protocols, which offer a way to define a set of methods and properties that a type must implement, are some of the key features of Swift.

We will go deeper into Swift's features and capabilities, including its syntax, data types, and control structures, in the upcoming posts. Additionally, we'll talk about performance improvement, testing, and debugging as they relate to Swift development best practices. Stay tuned for additional information on using Swift to create robust and dependable software apps!

The Model-View-Controller (MVC) design pattern is a basic component of creating app user interfaces, as any iOS developer is aware.

Introduction What is new in Swift 5.3 (whose publication process was announced by Apple on 3/25) can be found both at the code level (multi-pattern catch, multiple trailing closure …) and in the use of Swift Package Manager (addition of binary dependencies or resources.

Introduction Surely you have applied or, at least, you know architectures such as MVC, MVVM, MVP (even others such as VIPER or VIP).

Creating a Color Schema The Asset Catalog of colors are the color schema that we can create, from the publication of iOS 11 and Xcode 9, to have in a single point the definition of all the colors of our applications.

What’s MetricKit? MetricKit in a new framework, introduced in iOS 13 (WWDC2019), with which it is intended to gather information (metrics) about battery behavior and application performance.

Data access Nowadays,for data access most mobile applications have an internal database (Core Data, Realm …) to store information, which can then be used, for example, if the application does not have an internet connection.

Checking Internet status in an app With iOS 12, Apple has introduced Network, a framework that includes the NWPathMonitor class.

What’s MVVM MVVM (Model-View-ViewModel) is an architecture pattern that wants to separate the presentation logic from the business logic.