A native iOS shopping management app featuring shopping list, purchase history, currency exchange calculator, and spending statistics.
Originally ran as a Docker deployment on a Mac mini, but the school kept having power outages (Fuck U FAFU)...
So I made this .ipa version once and for all, optimized specifically for iPhone 13 mini (since it's the only phone I have 😮💨)
I built this to increase your useless anxiety (show you how expensive USD spending feels when converted to RMB 😢)
Though my intention was to help you calculate which luggage to bring to the US for best value 😊
🫵🏻ATTENTION: Since I use it myself, it's only in Chinese. Just throw it to the AI for translation if you need it in English.
Hope you enjoy using it (oh right, you'll need to sign it yourself 😄)
- Add, edit, and delete shopping items
- Budget support with USD / RMB currency toggle
- Automatic exchange rate conversion
- One-click purchase, items moved to history automatically
- Record every purchase detail
- Filter by store and date
- View spending trends
- Real-time USD / CNY exchange rate conversion (you'll need to set the rate in Settings, since each bank offers different rates,
definitely not because exchange rate APIs are expensive) - Batch conversion support
- Total spending summary
- Spending breakdown by store
- Spending trend charts
- Local persistent storage
- JSON import/export
- Customizable store list
- iOS Version: 16.0+
- Target Devices: iPhone X and later
- Development: Xcode 15.0+
🫵🏻ATTENTION: Since all my devices run iOS 26+, I used liquid glass effects. Not sure how it looks on systems older than iOS26.
If you want to skip the hassle, just grab the pre-built IPA from Releases.
cd iOS/SMmaster
chmod +x setup.sh build_unsigned.sh
./setup.shThe script automatically:
- Checks and installs Homebrew (if not installed)
- Checks and installs XcodeGen (if not installed)
- Generates Xcode project files
- Builds the IPA installation package
# Install XcodeGen
brew install xcodegen
# Generate project
cd iOS/SMmaster
xcodegen generate
# Open project
open SMmaster.xcodeproj- Open
SMmaster.xcodeprojin Xcode - Select your Apple Developer account (Xcode → Settings → Accounts)
- Connect your iPhone device
- Select the target device
- Click the Run button (⌘R)
- Run
./build_unsigned.shto generateSMmaster_Unsigned.ipa - Sign and install using enterprise signing tools or AltStore/TrollStore
├── project.yml # XcodeGen project configuration
├── setup.sh # Environment setup script
├── build_unsigned.sh # IPA packaging script
├── SMmaster/
│ ├── App/
│ │ └── ShoppingManagerApp.swift
│ ├── Models/
│ │ ├── DataModels.swift # Data model definitions
│ │ └── DataStore.swift # Local data persistence
│ ├── Views/
│ │ ├── MainView.swift # Main TabView interface
│ │ ├── ShoppingListView.swift
│ │ ├── HistoryView.swift
│ │ ├── ExchangeCalculatorView.swift
│ │ ├── StatisticsView.swift
│ │ └── SettingsView.swift
│ └── Resources/
│ ├── Info.plist
│ └── Assets.xcassets/
│ ├── AccentColor.colorset/
│ └── AppIcon.appiconset/
├── icon/
│ └── shopping-iOS-Default-1024x1024@1x.png
├── README.md
└── README_CN.md
- Native SwiftUI Development: Excellent performance, smooth UI (at least the 13mini doesn't lag)
- iOS 26.0+ Target: Uses latest system APIs
- Local Data Storage: No network dependency, secure data (well, you'll need to export your data yourself)
- Dark Purple Theme: Elegant visual design (ELEGANT!!!)
- Adaptive Layout: Fits various iPhone screen sizes (at least optimized for mini)
Migrate data from other versions:
- Copy
household_data.jsonandconfig.jsonfrom the original version - Open "Settings" in the iOS app
- Click "Import JSON Data"
- Data will be automatically read from clipboard and imported
MIT License