├── .gitattributes ├── InAppComm.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── gabriel.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── simon.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── gabriel.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── simon.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── InAppComm ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Custom Cells │ ├── ShoppingListCell.swift │ ├── ShoppingListCell.xib │ ├── ShoppingListItemCell.swift │ └── ShoppingListItemCell.xib ├── Custom Views │ ├── RenameListView.swift │ └── RenameListView.xib ├── Essential │ ├── NotificationNameExtension.swift │ └── ShoppingList.swift ├── Info.plist └── View Controllers │ ├── AllListsViewController.swift │ ├── EditItemViewController.swift │ └── ShoppingListViewController.swift ├── LICENSE └── starter.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /InAppComm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InAppComm.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InAppComm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /InAppComm.xcodeproj/project.xcworkspace/xcuserdata/gabriel.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/project.xcworkspace/xcuserdata/gabriel.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /InAppComm.xcodeproj/project.xcworkspace/xcuserdata/simon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/project.xcworkspace/xcuserdata/simon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /InAppComm.xcodeproj/xcuserdata/gabriel.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/xcuserdata/gabriel.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /InAppComm.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm.xcodeproj/xcuserdata/simon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /InAppComm/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/AppDelegate.swift -------------------------------------------------------------------------------- /InAppComm/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InAppComm/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InAppComm/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InAppComm/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InAppComm/Custom Cells/ShoppingListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Custom Cells/ShoppingListCell.swift -------------------------------------------------------------------------------- /InAppComm/Custom Cells/ShoppingListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Custom Cells/ShoppingListCell.xib -------------------------------------------------------------------------------- /InAppComm/Custom Cells/ShoppingListItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Custom Cells/ShoppingListItemCell.swift -------------------------------------------------------------------------------- /InAppComm/Custom Cells/ShoppingListItemCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Custom Cells/ShoppingListItemCell.xib -------------------------------------------------------------------------------- /InAppComm/Custom Views/RenameListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Custom Views/RenameListView.swift -------------------------------------------------------------------------------- /InAppComm/Custom Views/RenameListView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Custom Views/RenameListView.xib -------------------------------------------------------------------------------- /InAppComm/Essential/NotificationNameExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Essential/NotificationNameExtension.swift -------------------------------------------------------------------------------- /InAppComm/Essential/ShoppingList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Essential/ShoppingList.swift -------------------------------------------------------------------------------- /InAppComm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/Info.plist -------------------------------------------------------------------------------- /InAppComm/View Controllers/AllListsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/View Controllers/AllListsViewController.swift -------------------------------------------------------------------------------- /InAppComm/View Controllers/EditItemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/View Controllers/EditItemViewController.swift -------------------------------------------------------------------------------- /InAppComm/View Controllers/ShoppingListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/InAppComm/View Controllers/ShoppingListViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /starter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcoda/ShoppingAppDemo/HEAD/starter.zip --------------------------------------------------------------------------------