Tag Archives: Swift, SwiftUI

SwiftUI – EasyiToDoList 2.0

By | 21/09/2025

After weeks of development, version 2.0 introduces several major features that fundamentally change how users manage their daily tasks, with the centerpiece being native iOS widget integration. Home Screen Widget: Tasks at Yourt FingertipsThe most significant addition is a home screen widget that displays your 6 most urgent tasks directly on your iPhone’s home screen.… Read More »

SwiftUI – EasyiToDoList

By | 19/07/2025

My new app, EasyiToDoList, has been released on the Apple Store.But, what is it for?“With EasyiToDoList you can create colorful lists for your tasks, add photos to remember important details, and stay organized with our intuitive position-based sorting.EasyiToDoList reimagines task management with its innovative container system. Instead of endless lists, organize your tasks into elegant… Read More »

SwiftUI – Pie Chart

By | 08/05/2024

In this post, we will see how to create a Pie Chart using new mark type called SectorMark introduced in iOS 17.0.For this post, we will visualize a simple monthly budget allocation using different spending categories such as Housing, Food, Transportation, Entertainment, and Savings. We start to define the Data Model:[BUDGETDATA.SWIFT] Then, we define the… Read More »

SwiftUI – Property Wrappers

By | 10/04/2024

In this post, we will see how to use Property Wrappers in our SwiftUI projects.But first of all, what are Property Wrappers?“Property wrappers in SwiftUI are a powerful feature that enables us to add extra logic to the properties of our SwiftUI views or data models. They can manage storage, modify behavior, and add additional… Read More »

Swift – SwiftData

By | 28/02/2024

In this post, we will see how to use SwiftData in our projects.But, first of all, what is SwiftData?SwiftData is an Apple’s new data modeling and persistence framework, that offers a streamlined and modern approach to managing data. Unlike its more complex predecessor, Core Data, SwiftData emphasizes ease of use, type safety, and seamless integration… Read More »

Swift – SQLite

By | 13/12/2023

In this post, we will see how to use SQLite in an iOS project.In detail, we will use SQLite in the same application created in the post: Swift – Core Data. First of all, we have to add SQLite.swift in our project to simplify the process of working with SQLite databases: Go to File ->… Read More »

SwiftUI – MapKit

By | 08/11/2023

In this post, we will see a brief introduction to MapKit and how we can use it in our applications.But first of all, what is MapKit?From Apple web site:“MapKit for SwiftUI allows you to build map-centric views and apps across Apple platforms. You can design expressive and highly interactive Maps with minimal code by composing… Read More »