ScanEmotion is an AI-supported emotional diary app developed for iOS. Users write about their day or feelings, and the app analyzes the emotions behind the text using AI, then displays tailored feedback or supportive messages. Built entirely with UIKit and structured using the MVVM architectural pattern.
- Write your daily emotions and thoughts.
- Emotion analysis powered by AI.
- Personalized feedback based on the detected emotions.
- Smooth onboarding experience.
- Modular and scalable architecture (MVVM).
- Fully developed in UIKit (no SwiftUI).
This app follows a clear MVVM pattern:
ViewControllers handle only UI and user interaction.ViewModels handle validation, business logic, and data transfer.Coordinatormanages navigation between onboarding and main app screens.
User data (name, email, password, goal, challenges) is stored in UserDefaults and passed across screens using delegate pattern.
- Swift (UIKit)
- MVVM Architecture
- UserDefaults
- Programmatic UI with AutoLayout
- Delegation pattern
- Local validation logic
- Prepared for AI API integration (e.g. OpenAI)
-
Clone the repository:
git clone https://github.com/EnginBolat/ScanEmotion.git
-
Open the project in Xcode:
open ScanEmotion.xcodeproj
-
Run the project on a simulator or device.
⚠️ If you plan to integrate an AI backend, you can plug it into theEmotionAnalyzerclass or wherever the ViewModel processes user input.
This project is open-source and available under the MIT License.