├── .gitignore ├── hello.swift ├── .github ├── CONTRIBUTING.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /hello.swift: -------------------------------------------------------------------------------- 1 | //example ios apps 2 | //Jogemdra Kumar 3 | print("Welcome to iOS World!") 4 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Your contributions are always welcome! Thank you for your suggestions! 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Project URL 4 | 5 | 6 | ## Description 7 | 8 | 9 | ## Why it should be included to `example-ios-apps` (optional) 10 | 11 | ## Checklist 12 | 13 | 14 | - [ ] Only one project/change is in this pull request 15 | - [ ] Addition in chronological order (bottom of category) 16 | - [ ] Supports iOS 9 / tvOS 10 or later 17 | - [ ] Supports Swift 3 or later 18 | - [ ] Has a commit from less than 2 years ago 19 | - [ ] Has a **clear** README in English 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Jogendra Singh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Example iOS Apps 2 | ![Language](https://img.shields.io/badge/language-Swift%203-orange.svg) 3 | [![Twitter](https://img.shields.io/badge/twitter-@jogendrafx-blue.svg?style=flat)](https://twitter.com/jogendrafx) 4 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 5 | [![GitHub followers](https://img.shields.io/github/followers/espadrine.svg?style=social&label=Follow&style=flat-square)]()
6 | A curated list of Open Source example iOS apps developed in Swift. 7 | 8 | # How to Use 9 | Example-iOS-Apps is an amazing list for people who are beginners and learning iOS development and for iOS developers who need any example app or feature. The best ways to use are: 10 | - Ask for help on our [Twitter](https://twitter.com/jogendrafx) or drop us a mail on jogendra.iitbhu@gmail.com 11 | - Simply press command + F to search for a keyword 12 | - Go through our *Content Menu* 13 | 14 | ## iOS Apps that Take Part in Google Summer of Code 15 | * [SUSI iOS](https://github.com/fossasia/susi_iOS) - SUSI AI iOS app by FOSSASIA. 16 | * [Open Event Orga iOS](https://github.com/fossasia/open-event-orga-iOS) - Event management app for organizers using Open Event Platform by FOSSASIA 17 | * [Open Event iOS](https://github.com/fossasia/open-event-ios) - Open Event iOS app by FOSSASIA. 18 | * [Badge Magic iOS]() - Badge Magic is an Android app to control LED name badges. The goal is to provide options to portray names, graphics and simple animations on LED badges. For the data transfer from the smartphone to the LED badge we use Bluetooth. 19 | * [Powerup iOS](https://github.com/systers/powerup-iOS) - PowerUp is an educational choose-your-own-adventure game that utilizes a users uploaded curriculum to empower pre-adolescents to take charge of their reproductive health. This is the iOS version of the game. 20 | * [Open Food Facts iOS](https://github.com/openfoodfacts/openfoodfacts-ios) - iOS version (Swift) of Open Food Facts. 21 | * [Catty](https://github.com/Catrobat/Catty) - iOS implementation of the Catrobat language. 22 | * [Amahi](https://github.com/amahi/ios) - iOS application written in Swift, from scratch. 23 | * [Phimp.me](https://github.com/jogendra/phimpme-iOS) - Photo Image Editor and Sharing App. 24 | * [Matrix iOS SDK](https://github.com/matrix-org/matrix-ios-sdk) - The Matrix SDK for iOS. 25 | * [Kiwix Apple](https://github.com/kiwix/apple) - iOS and macOS implementation of Kiwix. 26 | * [Monumento](https://gitlab.com/aossie/monumento-ipad) - iPadOS app to visualise monuments around the globe. 27 | 28 | ## iOS Apps that written with SwiftUI 29 | * [Reddit-SwiftUI](https://github.com/carson-katri/reddit-swiftui) - A cross-platform Reddit client built in SwiftUI 30 | * [SwiftUITodo](https://github.com/devxoul/SwiftUITodo) - An example to-do list app using SwiftUI 31 | * [MovieSwiftUI](https://github.com/Dimillian/MovieSwiftUI) - SwiftUI & Combine app using MovieDB API. With a custom Flux (Redux) implementation. 32 | * [SwiftUI-MovieDB](https://github.com/alfianlosari/SwiftUI-MovieDB) - SwiftUI MovieDB prototype app 33 | * [SwiftUI-2048](https://github.com/unixzii/SwiftUI-2048) - A 2048 game writing with SwiftUI. 34 | * [GitHubSearchWithSwiftUI](https://github.com/marty-suzuki/GitHubSearchWithSwiftUI) - SwiftUI and Combine based GitHubSearch example. 35 | * [HNNow](https://github.com/nathfreder/HNNow) - Hacker News reader for iOS and iPadOS built with SwiftUI 36 | * [SwiftUIViewTextStack](https://github.com/rebeloper/SwiftUIViewTextStack) - How to create views, text and stacks with SwiftUI 37 | * [Animatable Cards](https://github.com/ivanvorobei/SwiftUI#animatable-cards) - Examples projects using SwiftUI & Combine to animatable cards 38 | * [swiftui-notes](https://github.com/heckj/swiftui-notes) - A collection of notes, project pieces, playgrounds and ideas on learning and using SwiftUI and Combine. 39 | * [Harvest-SwiftUI-Gallery](https://github.com/inamiy/Harvest-SwiftUI-Gallery) - Gallery App for Harvest (Elm Architecture + Optics) + SwiftUI + Combine. 40 | * [SwiftWebUI](https://github.com/SwiftWebUI/SwiftWebUI) - A demo implementation of SwiftUI for the Web 41 | * [8 Ball](https://github.com/fulldecent/8-ball) - A fully working iOS + watchOS game to make life choices 42 | * [AC Helper](https://github.com/Dimillian/ACHNBrowserUI) - Animal Crossing New Horizon companion app in SwiftUI 43 | * [Puffery](https://github.com/vknabel/puffery) - An iOS App written in SwiftUI to send push notifications fueled by Siri Shortcuts 44 | * [KHabit](https://github.com/elkiwy/khabit) - a pure and minimalistic app which helps you maintain productive habits, and nothing more. 45 | * [FootNote](https://github.com/cambardell/Footnote) - a SWIFTUI + Core Data IOS app built during Hacktoberfest2020 open source developers. 46 | * [Blackjack](https://github.com/Caldarie/blackjack) - Simple demo blackjack app on how to intergrate swiftUI with MVVM. 47 | * [AR MultiPendulum](https://github.com/philipturner/ar-multipendulum) - AR Headset experience with touchscreen settings interface built in SwiftUI. 48 | * [isowords](https://github.com/pointfreeco/isowords) - Open source game built in SwiftUI and the Composable Architecture. 49 | * [Clendar](https://github.com/vinhnx/Clendar) - Universal calendar app. Written in SwiftUI. 50 | 51 | ## watchOS Apps that written with SwiftUI 52 | * [Countio](https://github.com/dhanrajdc7/Countio) - Countio is simple WatchOS App made with Swiftly SwiftUI. You can count anything quickly with Countio!!! 53 | * [Waterminder](https://github.com/caiobzen/water-reminder-swiftui) - A simple Apple Watch app to remind you to drink water! 54 | 55 | ## Frameworks 56 | * [ARHeadsetKit](https://github.com/philipturner/ARHeadsetKit) - High-level framework for experimenting with AR and using $5 Google Cardboard to replicate Hololens. 57 | 58 | ## iOS Apps written with SceneKit 59 | * [Pizza Man](https://github.com/fulldecent/pizzaman) - A simple game where you eat flying pepperoni 60 | 61 | ## Content 62 | * [Calculator-iOS](https://github.com/imjog/Calculator-iOS) - Basic calculator app for iOS devices using Swift3. Created for learning purpose. 63 | * [Stopwatch](https://github.com/imjog/stopwatch) - Basic Stop Watch & Countdown app for iOS devices. Created for learning purpose. 64 | * [To Do List](https://github.com/imjog/todolist-ios-app) - Basic To Do List App for iOS devices using swift and xcode. 65 | * [Gravity Blocks](https://github.com/imjog/gravityBlocks) - A basic iOS app on basic physics concept gravity and elasticity. 66 | * [QR Blank](https://github.com/kahopoon/QR-Blank) - A basic QR code scanning app that checks URLs safety before advancing. 67 | * [AppleWatchCalculator](https://github.com/BalestraPatrick/AppleWatchCalculator) - A calculator for your Apple Watch but only if you have fingers small enough to press the buttons. 68 | * [done-swift](https://github.com/FancyPixel/done-swift) - Sample app to demonstrate data sharing between a WatchKit app and its main app using Realm 69 | * [how-much](https://github.com/dkhamsing/how-much) - A simple iOS app to record how much things cost using various data persistence implementations. 70 | * [Firefox for iOS](https://github.com/mozilla-mobile/firefox-ios) - An iOS version of the firefox browser 71 | * [Chats](https://github.com/acani/Chats) - Open source messaging app 72 | * [technex-ios](https://github.com/imjog/technex-ios) - iOS app for Technex, IIT(BHU) Varanasi. This project is closed before completion. You can use this app for learning purpose. 73 | * [GitHawk](https://github.com/rnystrom/GitHawk) - A GitHub project manager app for iOS 74 | * [30 days of React Native](https://github.com/fangwei716/30-days-of-react-native) - 30 days of React Native demos 75 | * [WordPress for iOS](https://github.com/wordpress-mobile/WordPress-iOS) - WordPress's app for iOS, written in Swift 76 | * [Artsy](https://github.com/artsy/eidolon) - An art auction app. 77 | * [CustomCamera](https://github.com/ChernyshenkoTaras/CustomCamera) - iOS project that demonstrates how to create a custom camera 78 | * [Edhita](https://github.com/tnantoka/edhita) - Open source text editor written for iOS in Swift 79 | * [5Calls](https://github.com/5calls/ios) - iOS app for 5Calls.org 80 | * [BoardBank](https://github.com/richardxyx/BoardBank) - Money Manager for Board Games 81 | * [TumCampusApp](https://github.com/TCA-Team/iOS) - An iOS app for and from students at Technical University of Munich. 82 | * [Swift 30 Projects](https://github.com/soapyigu/Swift30Projects) - 30 mini Swift Apps for self-study 83 | * [crime mapper](https://github.com/swwol/CrimeMapper) - A data visualisation tool that adds publicly available crime data from UK police forces to an interactive map 84 | * [VPN On](https://github.com/lexrus/VPNOn) - A basic iOS app for VPN which can be automatically connected for a pre-specified domain 85 | * [Blurry](https://github.com/meteochu/Blurry) - A small image blur tool for iOS. 86 | * [Files](https://github.com/steventroughtonsmith/files-ios) - File Browser for iOS. 87 | * [Kickstarter](https://github.com/kickstarter/ios-oss) - The official Kickstarter app for iOS. 88 | * [Alfresco](https://github.com/Alfresco/alfresco-ios-app) - Alfresco is the open platform iOS app for business-critical content management and collaboration. 89 | * [SwiftHN](https://github.com/Dimillian/SwiftHN) - A iOS app for Hacker News. 90 | * [DesignerNewsApp](https://github.com/MengTo/DesignerNewsApp) - A iOS client for Designer News. 91 | * [FlappySwift](https://github.com/fullstackio/FlappySwift) - Flappy Bird game written in iOS. 92 | * [Yep](https://github.com/CatchChat/Yep) - A community where geniuses meet. 93 | * [TweedleDumb](https://github.com/IanKeen/TweetleDumb) - A mock Twitter client built with MVVM and NavigationControllers. Small codebase, built with best practices in mind to demonstrate said practices. Great for learning purposes. 94 | * [BarcodeScanner](https://github.com/hyperoslo/BarcodeScanner) - Simple and beautiful barcode scanner. 95 | * [Social Logins](https://github.com/imjog/Social-Logins-iOS) - Basic app to show how to login with Facebook, Google, Twitter. Created for learning purpose. 96 | * [Awesome ML](https://github.com/eugenebokhan/Awesome-ML) - Discover, download, compile & launch different image processing CoreML models on iOS. 97 | * [Next Cloud](https://github.com/nextcloud/ios) - The Nextcloud iOS app allows you to access all your files on your Nextcloud. A safe home for all your data. 98 | * [Applozic iOS Swift Chat](https://github.com/AppLozic/ApplozicSwift) - Chat app sample and chat SDK to integrate into your iOS swift app. 99 | * [Kommunicate iOS Chat](https://github.com/Kommunicate-io/Kommunicate-iOS-SDK) - Kommunicate.io support chat SDK to integrate live chat and bot integrations for customer support into your iOS app. 100 | * [My Anime List](https://github.com/MaisaMilena/MyAnimeList) - Simple sample of using the VIP (Clean Swift) architecture for iOS. 101 | * [Wire iOS](https://github.com/wireapp/wire-ios) - The Wire mobile app has an architectural layer that we call sync engine . It is the client-side layer that processes all the data that is displayed in the mobile app. 102 | * [AudioKit](https://github.com/AudioKit/AudioKit) - Audio synthesis, processing, and analysis platform for iOS. 103 | * [Charter](https://github.com/matthewpalmer/Charter) - A Swift mailing list client for iPhone and iPad. 104 | * [2048](https://github.com/austinzheng/swift-2048 ) - A working port of 2048 to Swift 105 | * [Recipes App](https://github.com/onmyway133/Recipes) - An app that showcases many recipes together with their detail information 106 | * [PixPic](https://github.com/Yalantis/PixPic) - Photo editing app 107 | * [Brave iOS Browser](https://github.com/brave/browser-ios) - Brave is based on Firefox iOS 108 | * [Wikipedia](https://github.com/wikimedia/wikipedia-ios) - Official Wikipedia iOS App 109 | * [Todoey](https://github.com/tiannahenrylewis/Todoey) - To Do App 110 | * [VLC](https://github.com/videolan/vlc-ios) - Official VLC iOS & tvOS App 111 | * [Dailyfeed](https://github.com/paulsumit1993/DailyFeed) - iOS client for newsapi.org 112 | * [iOSSampleApp](https://github.com/igorkulman/iOSSampleApp) - Sample iOS app demonstrating Coordinators, Dependency Injection, MVVM, Binding 113 | * [Unwrap](https://github.com/twostraws/Unwrap) - Learn Swift interactively on your iPhone 114 | * [Alamofire-Example-Starwars](https://github.com/camiloibarrayepes/AlamofireStarWarsExample) - Learn alamofire with a funny example about Start Wars 115 | * [Sorting Algorithms App](https://github.com/victorpanitz/iOS-SortingAlgorithmsApp) - An open source app focused on show in a visual way how sorting algorithms actually works. 116 | * [App Store Clone](https://github.com/phillfarrugia/appstore-clone) - An experimental clone of the new iOS 11 App Store app. 117 | * [Podcasts](https://github.com/Karambirov/Podcasts.git) - A clone of Apple's Podcasts. 118 | * [TriangleDraw](https://github.com/triangledraw/TriangleDraw-iOS) - Pixel Editor app that uses `UIDocument`, `UIDocumentBrowserViewController`, `Metal`, `UndoManager`. 119 | * [Player](https://github.com/piemonte/Player) - video player in Swift, simple way to play and stream media on iOS/tvOS. 120 | * [ProgressGif](https://github.com/aheze/ProgressGif) - Add progress bars to gifs. Realm for project storage + Real time video editor + Renderer. 121 | * [Telegram](https://github.com/TelegramMessenger/Telegram-iOS) - Official Telegram Messenger for iOS 122 | * [CaptchaDemo](https://github.com/tanvijn/CaptchaDemo_ios) - A LightWeight Swift project to showcase implementation of Google ReCaptcha in iOS Application. 123 | * [CalendarApp](https://github.com/richardtop/CalendarApp) - A sample app similar to iOS Calendar, built with CalendarKit in less than 100 lines of code. 124 | * [Habitica](https://github.com/HabitRPG/habitica-ios) - Habit building & productivity app. 125 | * [PIA VPN](https://github.com/pia-foss/vpn-ios) - VPN App by Private Internet Access. 126 | * [NetNewsWire](https://github.com/Ranchero-Software/NetNewsWire) - RSS reader for macOS and iOS. 127 | * [Expense Tracker](https://github.com/abdorizak/Expensive-Tracker-App) - Expenses Tracker 🫰 is a financial app that used to track daily Expense from you Income 128 | 129 | 130 | ## Author 131 | 132 | 133 | 134 | 145 | 146 |
135 | 136 | 137 | Jogendra Singh 138 | 139 |

140 | 141 | 142 | 143 |

144 |
147 | 148 | ## What's next 149 | 150 | - Any suggestions? 151 | 152 | ## Contribution 153 | - If you have a **feature request**, open an **issue** 154 | - If you want to **contribute**, submit a **pull request** 155 | - If you have any issue or want **help**, please drop me a mail on jogendra.iitbhu@gmail.com 156 | 157 | ### Inspired by: 158 | [Awesome iOS](https://github.com/vsouza/awesome-ios) 159 | 160 | # License 161 | * Distributed under the MIT license. See [LICENSE](https://github.com/imjog/example-ios-apps/blob/master/LICENSE) for more information. 162 | --------------------------------------------------------------------------------