Skip weeks of setup. Start building your app today.
A production-ready iOS starter template with everything you need to ship a real app.
Created by Ken Kai | YouTube @kenkaidoesai | Skool Community
- Auth System (login, signup, Face ID)
- Onboarding Flow
- Network Layer
- Secure Storage
- Database
- Dark/Light Mode
- UI Components
- Navigation
- Tests
You need a Mac with Xcode installed. That's it.
- Open App Store on your Mac
- Search "Xcode"
- Click Get (it's free, ~7GB download)
- Wait for it to install
- Open Xcode once and accept the license agreement
Open Terminal (search "Terminal" in Spotlight) and paste:
git clone https://github.com/KenKaiii/kens-ios-app.git
cd kens-ios-appopen KensIOSApp.xcodeproj- In Xcode, click the play button at the top left
- Or press
Cmd + R - Pick a simulator (iPhone 16 recommended)
- The app will launch in the simulator
KensIOSApp/
├── App/ # App startup
├── Core/ # Infrastructure
├── Features/ # Your screens
├── Services/ # Business logic
└── Resources/ # Images & assets
This project uses XcodeGen to manage project settings via project.yml. If you need to add new targets, change build settings, or modify the project structure:
# Install XcodeGen (one-time)
brew install xcodegen
# Regenerate the Xcode project after editing project.yml
xcodegen generate- YouTube: @kenkaidoesai
- Community: skool.com/kenkai
MIT License - Use it however you want.