├── DKSChatKeyboard.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── dukaishun.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── dukaishun.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── DKSChatKeyboard.xcscheme │ └── xcschememanagement.plist ├── DKSChatKeyboard ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── emojiImg.imageset │ │ ├── Contents.json │ │ └── emojiImg.png │ ├── headImg.imageset │ │ ├── Contents.json │ │ └── headImg.jpeg │ ├── moreImg.imageset │ │ ├── Contents.json │ │ └── moreImg.png │ └── photoImg.imageset │ │ ├── Contents.json │ │ └── photoImg.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── ChatViewCell.h ├── ChatViewCell.m ├── ChatViewCell.xib ├── ChatViewController.h ├── ChatViewController.m ├── Info.plist ├── RootViewController.h ├── RootViewController.m ├── ThirdPath │ └── DKSKeyBoard │ │ ├── DKSEmojiView.h │ │ ├── DKSEmojiView.m │ │ ├── DKSKeyboardView.h │ │ ├── DKSKeyboardView.m │ │ ├── DKSMoreView.h │ │ ├── DKSMoreView.m │ │ ├── DKSTextView.h │ │ ├── DKSTextView.m │ │ ├── UIView+FrameTool.h │ │ └── UIView+FrameTool.m └── main.m └── README.md /DKSChatKeyboard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DKSChatKeyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DKSChatKeyboard.xcodeproj/project.xcworkspace/xcuserdata/dukaishun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard.xcodeproj/project.xcworkspace/xcuserdata/dukaishun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DKSChatKeyboard.xcodeproj/xcuserdata/dukaishun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard.xcodeproj/xcuserdata/dukaishun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DKSChatKeyboard.xcodeproj/xcuserdata/dukaishun.xcuserdatad/xcschemes/DKSChatKeyboard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard.xcodeproj/xcuserdata/dukaishun.xcuserdatad/xcschemes/DKSChatKeyboard.xcscheme -------------------------------------------------------------------------------- /DKSChatKeyboard.xcodeproj/xcuserdata/dukaishun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard.xcodeproj/xcuserdata/dukaishun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DKSChatKeyboard/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/AppDelegate.h -------------------------------------------------------------------------------- /DKSChatKeyboard/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/AppDelegate.m -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/emojiImg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/emojiImg.imageset/Contents.json -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/emojiImg.imageset/emojiImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/emojiImg.imageset/emojiImg.png -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/headImg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/headImg.imageset/Contents.json -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/headImg.imageset/headImg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/headImg.imageset/headImg.jpeg -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/moreImg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/moreImg.imageset/Contents.json -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/moreImg.imageset/moreImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/moreImg.imageset/moreImg.png -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/photoImg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/photoImg.imageset/Contents.json -------------------------------------------------------------------------------- /DKSChatKeyboard/Assets.xcassets/photoImg.imageset/photoImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Assets.xcassets/photoImg.imageset/photoImg.png -------------------------------------------------------------------------------- /DKSChatKeyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DKSChatKeyboard/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DKSChatKeyboard/ChatViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ChatViewCell.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ChatViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ChatViewCell.m -------------------------------------------------------------------------------- /DKSChatKeyboard/ChatViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ChatViewCell.xib -------------------------------------------------------------------------------- /DKSChatKeyboard/ChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ChatViewController.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ChatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ChatViewController.m -------------------------------------------------------------------------------- /DKSChatKeyboard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/Info.plist -------------------------------------------------------------------------------- /DKSChatKeyboard/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/RootViewController.h -------------------------------------------------------------------------------- /DKSChatKeyboard/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/RootViewController.m -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSEmojiView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSEmojiView.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSEmojiView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSEmojiView.m -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSKeyboardView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSKeyboardView.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSKeyboardView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSKeyboardView.m -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSMoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSMoreView.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSMoreView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSMoreView.m -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSTextView.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/DKSTextView.m -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/UIView+FrameTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/UIView+FrameTool.h -------------------------------------------------------------------------------- /DKSChatKeyboard/ThirdPath/DKSKeyBoard/UIView+FrameTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/ThirdPath/DKSKeyBoard/UIView+FrameTool.m -------------------------------------------------------------------------------- /DKSChatKeyboard/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/DKSChatKeyboard/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirstDKS521/DKSChatKeyboard/HEAD/README.md --------------------------------------------------------------------------------