├── .gitignore ├── GLGroupChatPicView.podspec ├── GLGroupChatPicView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── GLGroupChatPicView.xccheckout │ └── xcuserdata │ │ └── gautam.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── gautam.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ChatImageConcept.xcscheme │ └── xcschememanagement.plist ├── GLGroupChatPicView ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── Main.storyboard ├── GLGroupChatPicView-Info.plist ├── GLGroupChatPicView-Prefix.pch ├── GLGroupChatPicView.h ├── GLGroupChatPicView.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── LaunchImage.launchimage │ │ └── Contents.json │ └── default_user.imageset │ │ ├── Contents.json │ │ ├── default_user.png │ │ └── default_user@2x.png ├── MembersModel.h ├── MembersModel.m ├── SessionCell.h ├── SessionCell.m ├── SessionListController.h ├── SessionListController.m ├── SessionModel.h ├── SessionModel.m ├── data.json ├── en.lproj │ └── InfoPlist.strings ├── images │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── default_user.png │ └── default_user@2x.png └── main.m ├── GLGroupChatPicViewTests ├── GLGroupChatPicViewTests-Info.plist ├── GLGroupChatPicViewTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md └── Screenshot1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/.gitignore -------------------------------------------------------------------------------- /GLGroupChatPicView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.podspec -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/project.xcworkspace/xcshareddata/GLGroupChatPicView.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/project.xcworkspace/xcshareddata/GLGroupChatPicView.xccheckout -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/project.xcworkspace/xcuserdata/gautam.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/project.xcworkspace/xcuserdata/gautam.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/project.xcworkspace/xcuserdata/gautam.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/project.xcworkspace/xcuserdata/gautam.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/xcuserdata/gautam.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/xcuserdata/gautam.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/xcuserdata/gautam.xcuserdatad/xcschemes/ChatImageConcept.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/xcuserdata/gautam.xcuserdatad/xcschemes/ChatImageConcept.xcscheme -------------------------------------------------------------------------------- /GLGroupChatPicView.xcodeproj/xcuserdata/gautam.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView.xcodeproj/xcuserdata/gautam.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GLGroupChatPicView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/AppDelegate.h -------------------------------------------------------------------------------- /GLGroupChatPicView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/AppDelegate.m -------------------------------------------------------------------------------- /GLGroupChatPicView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GLGroupChatPicView/GLGroupChatPicView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/GLGroupChatPicView-Info.plist -------------------------------------------------------------------------------- /GLGroupChatPicView/GLGroupChatPicView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/GLGroupChatPicView-Prefix.pch -------------------------------------------------------------------------------- /GLGroupChatPicView/GLGroupChatPicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/GLGroupChatPicView.h -------------------------------------------------------------------------------- /GLGroupChatPicView/GLGroupChatPicView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/GLGroupChatPicView.m -------------------------------------------------------------------------------- /GLGroupChatPicView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GLGroupChatPicView/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /GLGroupChatPicView/Images.xcassets/default_user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/Images.xcassets/default_user.imageset/Contents.json -------------------------------------------------------------------------------- /GLGroupChatPicView/Images.xcassets/default_user.imageset/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/Images.xcassets/default_user.imageset/default_user.png -------------------------------------------------------------------------------- /GLGroupChatPicView/Images.xcassets/default_user.imageset/default_user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/Images.xcassets/default_user.imageset/default_user@2x.png -------------------------------------------------------------------------------- /GLGroupChatPicView/MembersModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/MembersModel.h -------------------------------------------------------------------------------- /GLGroupChatPicView/MembersModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/MembersModel.m -------------------------------------------------------------------------------- /GLGroupChatPicView/SessionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/SessionCell.h -------------------------------------------------------------------------------- /GLGroupChatPicView/SessionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/SessionCell.m -------------------------------------------------------------------------------- /GLGroupChatPicView/SessionListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/SessionListController.h -------------------------------------------------------------------------------- /GLGroupChatPicView/SessionListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/SessionListController.m -------------------------------------------------------------------------------- /GLGroupChatPicView/SessionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/SessionModel.h -------------------------------------------------------------------------------- /GLGroupChatPicView/SessionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/SessionModel.m -------------------------------------------------------------------------------- /GLGroupChatPicView/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/data.json -------------------------------------------------------------------------------- /GLGroupChatPicView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GLGroupChatPicView/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/1.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/10.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/11.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/12.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/13.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/14.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/15.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/16.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/2.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/3.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/4.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/5.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/6.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/7.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/8.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/9.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/default_user.png -------------------------------------------------------------------------------- /GLGroupChatPicView/images/default_user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/images/default_user@2x.png -------------------------------------------------------------------------------- /GLGroupChatPicView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicView/main.m -------------------------------------------------------------------------------- /GLGroupChatPicViewTests/GLGroupChatPicViewTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicViewTests/GLGroupChatPicViewTests-Info.plist -------------------------------------------------------------------------------- /GLGroupChatPicViewTests/GLGroupChatPicViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/GLGroupChatPicViewTests/GLGroupChatPicViewTests.m -------------------------------------------------------------------------------- /GLGroupChatPicViewTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RATTLESNAKE-VIPER/GLGroupChatPicView/HEAD/Screenshot1.png --------------------------------------------------------------------------------