Project developed during a mobile development event organized by PUC Minas. The main objective of this project is to introduce the concept of native iOS application programming with Swift. To achieve this, a to-do list program was created, covering several important introductory concepts, such as creating interfaces with SwiftUI and storing data with UserDefaults.
2024-05-13.13-02-16.mov
The application was developed with the main purpose of being a to-do list. It allows users to view a list of registered tasks, add new tasks, and delete tasks as needed. Additionally, the project includes a location map to put into practice the concepts learned about MapKit.
- Swift: programming language developed by Apple for iOS application development
- SwiftUI: declarative framework for creating user interfaces in Swift
- Combine: customize handling of asynchronous events by combining event-processing operators
- MapKit: display map or satellite imagery within your app, call out points of interest, and determine placemark information for map coordinates
- UserDefaults: Swift interface for storing small amounts of data persistently
1. Install and configure Xcode on your Mac
- Download and install Xcode from the Mac App Store
- Make sure you have the latest version of Xcode installed
2. Clone this repository on your machine
- Open Terminal on your Mac
- Navigate to the directory where you want to clone the project
cd /path/to/your/directory
- Clone the repository using the following command
git clone https://github.com/ArturColen/WebTechWorkshop.git
- Open Xcode
- Navigate to the directory where you cloned the project repository
- Double-click on the
.xcodeproj
file to open the project in Xcode
- Select a simulator from the list of available devices in Xcode
- Click the
Play ▶️
button in the Xcode toolbar to build and run the project in the selected simulator - Wait for the simulator to launch and the project to build and run