├── .gitignore ├── Podfile ├── Podfile.lock ├── README.md ├── SimpleNoteStarter.zip ├── SimpleNoteTakingApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SimpleNoteTakingApp.xcworkspace └── contents.xcworkspacedata ├── SimpleNoteTakingApp ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Config │ └── Constants.swift ├── Extensions │ ├── UIColor+Extensions.swift │ ├── UIStoryboard+Extensions.swift │ ├── UITableView+Extensions.swift │ └── UIViewController+Extensions.swift ├── Info.plist ├── Models │ └── Note.swift └── ViewControllers │ ├── HomeViewController.swift │ ├── LoginViewController.swift │ └── NoteViewController.swift └── SimpleNoteTakingAppTests ├── Extensions └── KIF+Extensions.swift ├── Features ├── BaseUITests.swift ├── HomeTests.swift └── LoginTests.swift ├── Info.plist ├── SimpleNoteTakingAppTests-Bridging-Header.h └── Steps ├── CommonSteps.swift ├── HomeSteps.swift └── LoginSteps.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/README.md -------------------------------------------------------------------------------- /SimpleNoteStarter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteStarter.zip -------------------------------------------------------------------------------- /SimpleNoteTakingApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SimpleNoteTakingApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SimpleNoteTakingApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SimpleNoteTakingApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/AppDelegate.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Config/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Config/Constants.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Extensions/UIColor+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Extensions/UIColor+Extensions.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Extensions/UIStoryboard+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Extensions/UIStoryboard+Extensions.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Extensions/UITableView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Extensions/UITableView+Extensions.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Extensions/UIViewController+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Extensions/UIViewController+Extensions.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Info.plist -------------------------------------------------------------------------------- /SimpleNoteTakingApp/Models/Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/Models/Note.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/ViewControllers/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/ViewControllers/HomeViewController.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/ViewControllers/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/ViewControllers/LoginViewController.swift -------------------------------------------------------------------------------- /SimpleNoteTakingApp/ViewControllers/NoteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingApp/ViewControllers/NoteViewController.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Extensions/KIF+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Extensions/KIF+Extensions.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Features/BaseUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Features/BaseUITests.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Features/HomeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Features/HomeTests.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Features/LoginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Features/LoginTests.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Info.plist -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/SimpleNoteTakingAppTests-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Steps/CommonSteps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Steps/CommonSteps.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Steps/HomeSteps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Steps/HomeSteps.swift -------------------------------------------------------------------------------- /SimpleNoteTakingAppTests/Steps/LoginSteps.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/SimpleNote/HEAD/SimpleNoteTakingAppTests/Steps/LoginSteps.swift --------------------------------------------------------------------------------