├── .gitignore ├── DBChatAvatarSample ├── DBChatAvatarSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── DBChatAvatarSample.xccheckout │ │ └── xcuserdata │ │ │ ├── di.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── dianashumskaya.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── di.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── dianashumskaya.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── DBChatAvatarSample.xcscheme │ │ └── xcschememanagement.plist ├── DBChatAvatarSample │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Classes │ │ ├── Controllers │ │ │ ├── DBChatsController.h │ │ │ └── DBChatsController.m │ │ ├── Helpers │ │ │ └── UIImage+ │ │ │ │ ├── UIImage+Default.h │ │ │ │ └── UIImage+Default.m │ │ ├── Managers │ │ │ ├── DBChatManager.h │ │ │ └── DBChatManager.m │ │ ├── Model │ │ │ ├── DBChat.h │ │ │ ├── DBChat.m │ │ │ ├── DBUser.h │ │ │ └── DBUser.m │ │ └── Views │ │ │ ├── DBChatCell.h │ │ │ └── DBChatCell.m │ ├── Info.plist │ ├── Resources │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── DBAvatars.xcassets │ │ │ ├── Avatar_1.imageset │ │ │ │ ├── Avatar_1.png │ │ │ │ └── Contents.json │ │ │ ├── Avatar_2.imageset │ │ │ │ ├── Avatar_2.png │ │ │ │ └── Contents.json │ │ │ ├── Avatar_3.imageset │ │ │ │ ├── Avatar_3.png │ │ │ │ └── Contents.json │ │ │ ├── Avatar_4.imageset │ │ │ │ ├── Avatar_4.png │ │ │ │ └── Contents.json │ │ │ ├── Avatar_5.imageset │ │ │ │ ├── Avatar_5.png │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ │ └── UserPlaceholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── UserPlaceholder.png │ │ └── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── main.m └── Podfile ├── DBChatAvatarView.podspec ├── DBChatAvatarView ├── DBAvatarView.h ├── DBAvatarView.m ├── DBChatAvatarView.h ├── DBChatAvatarView.m ├── DBStatusView.h └── DBStatusView.m ├── LICENSE ├── README.md └── Screens └── SampleScreen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/.gitignore -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcshareddata/DBChatAvatarSample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcshareddata/DBChatAvatarSample.xccheckout -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcuserdata/di.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcuserdata/di.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcuserdata/dianashumskaya.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcuserdata/dianashumskaya.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcuserdata/dianashumskaya.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/project.xcworkspace/xcuserdata/dianashumskaya.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/di.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/di.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/di.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/di.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/dianashumskaya.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/dianashumskaya.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/dianashumskaya.xcuserdatad/xcschemes/DBChatAvatarSample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/dianashumskaya.xcuserdatad/xcschemes/DBChatAvatarSample.xcscheme -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/dianashumskaya.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample.xcodeproj/xcuserdata/dianashumskaya.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/.DS_Store -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/AppDelegate.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/AppDelegate.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Controllers/DBChatsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Controllers/DBChatsController.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Controllers/DBChatsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Controllers/DBChatsController.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Helpers/UIImage+/UIImage+Default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Helpers/UIImage+/UIImage+Default.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Helpers/UIImage+/UIImage+Default.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Helpers/UIImage+/UIImage+Default.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Managers/DBChatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Managers/DBChatManager.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Managers/DBChatManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Managers/DBChatManager.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBChat.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBChat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBChat.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBUser.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Model/DBUser.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Views/DBChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Views/DBChatCell.h -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Classes/Views/DBChatCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Classes/Views/DBChatCell.m -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Info.plist -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_1.imageset/Avatar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_1.imageset/Avatar_1.png -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_1.imageset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_2.imageset/Avatar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_2.imageset/Avatar_2.png -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_2.imageset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_3.imageset/Avatar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_3.imageset/Avatar_3.png -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_3.imageset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_4.imageset/Avatar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_4.imageset/Avatar_4.png -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_4.imageset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_5.imageset/Avatar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_5.imageset/Avatar_5.png -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/Avatar_5.imageset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/UserPlaceholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/UserPlaceholder.imageset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/UserPlaceholder.imageset/UserPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/DBAvatars.xcassets/UserPlaceholder.imageset/UserPlaceholder.png -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DBChatAvatarSample/DBChatAvatarSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/DBChatAvatarSample/main.m -------------------------------------------------------------------------------- /DBChatAvatarSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarSample/Podfile -------------------------------------------------------------------------------- /DBChatAvatarView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView.podspec -------------------------------------------------------------------------------- /DBChatAvatarView/DBAvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView/DBAvatarView.h -------------------------------------------------------------------------------- /DBChatAvatarView/DBAvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView/DBAvatarView.m -------------------------------------------------------------------------------- /DBChatAvatarView/DBChatAvatarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView/DBChatAvatarView.h -------------------------------------------------------------------------------- /DBChatAvatarView/DBChatAvatarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView/DBChatAvatarView.m -------------------------------------------------------------------------------- /DBChatAvatarView/DBStatusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView/DBStatusView.h -------------------------------------------------------------------------------- /DBChatAvatarView/DBStatusView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/DBChatAvatarView/DBStatusView.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/README.md -------------------------------------------------------------------------------- /Screens/SampleScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibelogrivaya/DBChatAvatarView/HEAD/Screens/SampleScreen.png --------------------------------------------------------------------------------