├── .gitignore ├── .gitmodules ├── CouchChat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── CouchChat ├── AppDelegate.h ├── AppDelegate.m ├── ChatController.h ├── ChatController.m ├── ChatListController.h ├── ChatListController.m ├── ChatRoom.h ├── ChatRoom.m ├── ChatStore.h ├── ChatStore.m ├── CouchChat-Info.plist ├── CouchChat-Prefix.pch ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── LoginController.h ├── LoginController.m ├── SyncManager.h ├── SyncManager.m ├── UserPickerController.h ├── UserPickerController.m ├── UserProfile.h ├── UserProfile.m ├── UserProfile_Private.h ├── en.lproj │ ├── ChatController_iPad.xib │ ├── ChatController_iPhone.xib │ ├── ChatListController_iPad.xib │ ├── ChatListController_iPhone.xib │ └── InfoPlist.strings └── main.m ├── Frameworks └── README.txt ├── README.md ├── Resources ├── Camera.png ├── ChatIcon.png ├── ChatIcon@2x.png └── double_lined.png ├── iPhone icon.png ├── iPhone icon@2x.png └── sync-gateway-config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /CouchChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CouchChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CouchChat/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/AppDelegate.h -------------------------------------------------------------------------------- /CouchChat/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/AppDelegate.m -------------------------------------------------------------------------------- /CouchChat/ChatController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatController.h -------------------------------------------------------------------------------- /CouchChat/ChatController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatController.m -------------------------------------------------------------------------------- /CouchChat/ChatListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatListController.h -------------------------------------------------------------------------------- /CouchChat/ChatListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatListController.m -------------------------------------------------------------------------------- /CouchChat/ChatRoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatRoom.h -------------------------------------------------------------------------------- /CouchChat/ChatRoom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatRoom.m -------------------------------------------------------------------------------- /CouchChat/ChatStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatStore.h -------------------------------------------------------------------------------- /CouchChat/ChatStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/ChatStore.m -------------------------------------------------------------------------------- /CouchChat/CouchChat-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/CouchChat-Info.plist -------------------------------------------------------------------------------- /CouchChat/CouchChat-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/CouchChat-Prefix.pch -------------------------------------------------------------------------------- /CouchChat/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/Default-568h@2x.png -------------------------------------------------------------------------------- /CouchChat/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/Default.png -------------------------------------------------------------------------------- /CouchChat/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/Default@2x.png -------------------------------------------------------------------------------- /CouchChat/LoginController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/LoginController.h -------------------------------------------------------------------------------- /CouchChat/LoginController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/LoginController.m -------------------------------------------------------------------------------- /CouchChat/SyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/SyncManager.h -------------------------------------------------------------------------------- /CouchChat/SyncManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/SyncManager.m -------------------------------------------------------------------------------- /CouchChat/UserPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/UserPickerController.h -------------------------------------------------------------------------------- /CouchChat/UserPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/UserPickerController.m -------------------------------------------------------------------------------- /CouchChat/UserProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/UserProfile.h -------------------------------------------------------------------------------- /CouchChat/UserProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/UserProfile.m -------------------------------------------------------------------------------- /CouchChat/UserProfile_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/UserProfile_Private.h -------------------------------------------------------------------------------- /CouchChat/en.lproj/ChatController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/en.lproj/ChatController_iPad.xib -------------------------------------------------------------------------------- /CouchChat/en.lproj/ChatController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/en.lproj/ChatController_iPhone.xib -------------------------------------------------------------------------------- /CouchChat/en.lproj/ChatListController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/en.lproj/ChatListController_iPad.xib -------------------------------------------------------------------------------- /CouchChat/en.lproj/ChatListController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/en.lproj/ChatListController_iPhone.xib -------------------------------------------------------------------------------- /CouchChat/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CouchChat/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/CouchChat/main.m -------------------------------------------------------------------------------- /Frameworks/README.txt: -------------------------------------------------------------------------------- 1 | Put CouchbaseLite.framework in here 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/Resources/Camera.png -------------------------------------------------------------------------------- /Resources/ChatIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/Resources/ChatIcon.png -------------------------------------------------------------------------------- /Resources/ChatIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/Resources/ChatIcon@2x.png -------------------------------------------------------------------------------- /Resources/double_lined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/Resources/double_lined.png -------------------------------------------------------------------------------- /iPhone icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/iPhone icon.png -------------------------------------------------------------------------------- /iPhone icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/iPhone icon@2x.png -------------------------------------------------------------------------------- /sync-gateway-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchbaselabs/CouchChat-iOS/HEAD/sync-gateway-config.json --------------------------------------------------------------------------------