WeatherApp is an iOS application that displays the current weather based on the user’s location, showing the city, temperature, and a brief weather description.
Main Screen:
- Displays the current weather based on the user’s location, including:
- City name
- Temperature
- Weather condition description (e.g., sunny, cloudy, etc.)
Location & Error Handling:
- Handles scenarios when the user denies location access, providing a fallback experience.
- Displays appropriate messages for API errors to maintain a smooth user experience.
- Swift:: The primary programming language used for iOS development.
- SwiftUI: Primary framework for building the user interface.
- MVVM: Separates the app's business logic from the UI, enhancing code organization and maintainability.
- CoreLocation: Handles location-based functionality to retrieve the user’s current coordinates.
- OpenWeather API: Fetches real-time weather data based on the user's location.
- GCD (Grand Central Dispatch): Manages asynchronous network requests to enhance performance and responsiveness.
- SOLID Principles: The project is structured into layers to ensure clean, modular code that adheres to SOLID design principles.
To run the project locally, follow these steps:
- Clone the repository from GitHub:
git clone https://github.com/irinadeeva/WeatherNow.git
- Open the project in Xcode:
open WeatheNow.xcodeproj