├── README.md ├── TextUtil.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TextUtil.xccheckout │ └── xcuserdata │ │ └── zx_04.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zx_04.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TextUtil.xcscheme │ └── xcschememanagement.plist ├── TextUtil ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Chat │ ├── Controllers │ │ ├── ChatViewController.h │ │ ├── ChatViewController.m │ │ ├── TextAndPictureViewController.h │ │ └── TextAndPictureViewController.m │ ├── Models │ │ ├── ChatMessage.h │ │ └── ChatMessage.m │ └── Views │ │ ├── ChatCell.h │ │ ├── ChatCell.m │ │ ├── YYFaceScrollView.h │ │ ├── YYFaceScrollView.m │ │ ├── YYFaceView.h │ │ └── YYFaceView.m ├── Discover │ ├── Controllers │ │ ├── DynamicViewController.h │ │ └── DynamicViewController.m │ ├── Models │ │ ├── Dynamic.h │ │ └── Dynamic.m │ └── Views │ │ ├── DynamicCell.h │ │ ├── DynamicCell.m │ │ ├── DynamicView.h │ │ └── DynamicView.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── image │ │ ├── chat_recive_nor.imageset │ │ ├── Contents.json │ │ └── chat_recive_nor@2x.png │ │ ├── chat_recive_press_pic.imageset │ │ ├── Contents.json │ │ └── chat_recive_press_pic@2x.png │ │ ├── chat_send_nor.imageset │ │ ├── Contents.json │ │ └── chat_send_nor@2x.png │ │ ├── chat_send_press_pic.imageset │ │ ├── Contents.json │ │ └── chat_send_press_pic@2x.png │ │ ├── dynamic_collect.imageset │ │ ├── Contents.json │ │ └── dynamic_collect@2x.png │ │ ├── dynamic_collect_select.imageset │ │ ├── Contents.json │ │ └── dynamic_collect_select@2x.png │ │ ├── dynamic_comment.imageset │ │ ├── Contents.json │ │ └── dynamic_comment@2x.png │ │ ├── dynamic_comment_select.imageset │ │ ├── Contents.json │ │ └── dynamic_comment_select@2x.png │ │ ├── dynamic_love.imageset │ │ ├── Contents.json │ │ └── dynamic_love@2x.png │ │ ├── dynamic_love_blue.imageset │ │ ├── Contents.json │ │ └── dynamic_love_blue@2x.png │ │ ├── dynamic_love_select.imageset │ │ ├── Contents.json │ │ └── dynamic_love_select@2x.png │ │ ├── emoticon_keyboard_magnifier.imageset │ │ ├── Contents.json │ │ └── emoticon_keyboard_magnifier@2x.png │ │ ├── emotion_btbg.imageset │ │ ├── Contents.json │ │ └── chatgroup_emotion_btbg@2x.png │ │ ├── header_QQ.imageset │ │ ├── AS_QQ@2x.png │ │ └── Contents.json │ │ ├── header_wechat.imageset │ │ ├── AppIcon57x57@2x.png │ │ └── Contents.json │ │ ├── tab_conversation.imageset │ │ ├── Contents.json │ │ ├── tab_conversation@2x.png │ │ └── tab_conversation@3x.png │ │ ├── tab_conversation_click.imageset │ │ ├── Contents.json │ │ ├── tab_conversation_click@2x.png │ │ └── tab_conversation_click@3x.png │ │ ├── tab_oa.imageset │ │ ├── Contents.json │ │ ├── tab_oa@2x.png │ │ └── tab_oa@3x.png │ │ └── tab_oa_click.imageset │ │ ├── Contents.json │ │ ├── tab_oa_click@2x.png │ │ └── tab_oa_click@3x.png ├── Images │ ├── 001.png │ ├── 002.png │ ├── 003.png │ ├── 004.png │ ├── 005.png │ ├── 006.png │ ├── 007.png │ ├── 008.png │ ├── 009.png │ ├── 010.png │ ├── 011.png │ ├── 012.png │ ├── 013.png │ ├── 014.png │ ├── 015.png │ ├── 016.png │ ├── 017.png │ ├── 018.png │ ├── 019.png │ ├── 020.png │ ├── 021@2x.png │ ├── 022@2x.png │ ├── 023@2x.png │ ├── 024@2x.png │ ├── 025@2x.png │ ├── 026@2x.png │ ├── 027@2x.png │ ├── 028@2x.png │ ├── 029@2x.png │ ├── 030@2x.png │ ├── 031@2x.png │ ├── 032@2x.png │ ├── 033@2x.png │ ├── 034@2x.png │ ├── 035@2x.png │ ├── 036@2x.png │ ├── 037@2x.png │ ├── 038@2x.png │ ├── 039@2x.png │ ├── 040@2x.png │ ├── 041@2x.png │ ├── 042@2x.png │ ├── 043@2x.png │ ├── 044@2x.png │ ├── 045@2x.png │ ├── 046@2x.png │ ├── 047@2x.png │ ├── 048@2x.png │ ├── 049@2x.png │ ├── 050@2x.png │ ├── 051@2x.png │ ├── 052@2x.png │ ├── 053@2x.png │ ├── 054@2x.png │ ├── 055@2x.png │ ├── 056@2x.png │ ├── 057@2x.png │ ├── 058@2x.png │ ├── 059@2x.png │ ├── 060@2x.png │ ├── 061@2x.png │ ├── 062@2x.png │ ├── 063@2x.png │ ├── 064@2x.png │ ├── 065@2x.png │ ├── 066@2x.png │ ├── 067@2x.png │ ├── 068@2x.png │ ├── 069@2x.png │ ├── 070@2x.png │ ├── 071@2x.png │ ├── 072@2x.png │ ├── 073@2x.png │ ├── 074@2x.png │ ├── 075@2x.png │ ├── 076@2x.png │ ├── 077@2x.png │ ├── 078@2x.png │ ├── 079@2x.png │ ├── 080@2x.png │ ├── 081@2x.png │ ├── 082@2x.png │ ├── 083@2x.png │ ├── 084@2x.png │ ├── 085@2x.png │ ├── 086@2x.png │ ├── 087@2x.png │ ├── 088@2x.png │ ├── 089@2x.png │ ├── 090@2x.png │ ├── 091@2x.png │ ├── 092@2x.png │ ├── 093@2x.png │ ├── 094@2x.png │ ├── 095@2x.png │ ├── 096@2x.png │ ├── 097@2x.png │ ├── 098@2x.png │ ├── 099@2x.png │ ├── 100@2x.png │ ├── 101@2x.png │ ├── 102@2x.png │ ├── 103@2x.png │ ├── 104@2x.png │ ├── 105@2x.png │ ├── ScreenShot1.png │ ├── ScreenShot2.png │ ├── ScreenShot3.png │ ├── emotion@2x.png │ ├── image_01.jpg │ ├── image_02.jpg │ ├── image_03.jpg │ ├── image_04.jpg │ ├── image_05.jpg │ ├── image_06.jpg │ ├── image_07.jpg │ ├── image_08.jpg │ └── image_09.jpg ├── Info.plist ├── OpenSources │ └── FMDB │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── TextUtil-Prefix.pch ├── Utils │ ├── JKDBHelper.h │ ├── JKDBHelper.m │ ├── JKDBModel.h │ ├── JKDBModel.m │ ├── UIImage+Extension.h │ ├── UIImage+Extension.m │ ├── UIViewExt.h │ ├── UIViewExt.m │ ├── Utility.h │ └── Utility.m ├── emoticons.plist └── main.m └── TextUtilTests ├── Info.plist └── TextUtilTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/README.md -------------------------------------------------------------------------------- /TextUtil.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TextUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TextUtil.xcodeproj/project.xcworkspace/xcshareddata/TextUtil.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/project.xcworkspace/xcshareddata/TextUtil.xccheckout -------------------------------------------------------------------------------- /TextUtil.xcodeproj/project.xcworkspace/xcuserdata/zx_04.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/project.xcworkspace/xcuserdata/zx_04.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TextUtil.xcodeproj/xcuserdata/zx_04.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/xcuserdata/zx_04.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TextUtil.xcodeproj/xcuserdata/zx_04.xcuserdatad/xcschemes/TextUtil.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/xcuserdata/zx_04.xcuserdatad/xcschemes/TextUtil.xcscheme -------------------------------------------------------------------------------- /TextUtil.xcodeproj/xcuserdata/zx_04.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil.xcodeproj/xcuserdata/zx_04.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TextUtil/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/AppDelegate.h -------------------------------------------------------------------------------- /TextUtil/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/AppDelegate.m -------------------------------------------------------------------------------- /TextUtil/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TextUtil/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TextUtil/Chat/Controllers/ChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Controllers/ChatViewController.h -------------------------------------------------------------------------------- /TextUtil/Chat/Controllers/ChatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Controllers/ChatViewController.m -------------------------------------------------------------------------------- /TextUtil/Chat/Controllers/TextAndPictureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Controllers/TextAndPictureViewController.h -------------------------------------------------------------------------------- /TextUtil/Chat/Controllers/TextAndPictureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Controllers/TextAndPictureViewController.m -------------------------------------------------------------------------------- /TextUtil/Chat/Models/ChatMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Models/ChatMessage.h -------------------------------------------------------------------------------- /TextUtil/Chat/Models/ChatMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Models/ChatMessage.m -------------------------------------------------------------------------------- /TextUtil/Chat/Views/ChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Views/ChatCell.h -------------------------------------------------------------------------------- /TextUtil/Chat/Views/ChatCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Views/ChatCell.m -------------------------------------------------------------------------------- /TextUtil/Chat/Views/YYFaceScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Views/YYFaceScrollView.h -------------------------------------------------------------------------------- /TextUtil/Chat/Views/YYFaceScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Views/YYFaceScrollView.m -------------------------------------------------------------------------------- /TextUtil/Chat/Views/YYFaceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Views/YYFaceView.h -------------------------------------------------------------------------------- /TextUtil/Chat/Views/YYFaceView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Chat/Views/YYFaceView.m -------------------------------------------------------------------------------- /TextUtil/Discover/Controllers/DynamicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Controllers/DynamicViewController.h -------------------------------------------------------------------------------- /TextUtil/Discover/Controllers/DynamicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Controllers/DynamicViewController.m -------------------------------------------------------------------------------- /TextUtil/Discover/Models/Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Models/Dynamic.h -------------------------------------------------------------------------------- /TextUtil/Discover/Models/Dynamic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Models/Dynamic.m -------------------------------------------------------------------------------- /TextUtil/Discover/Views/DynamicCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Views/DynamicCell.h -------------------------------------------------------------------------------- /TextUtil/Discover/Views/DynamicCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Views/DynamicCell.m -------------------------------------------------------------------------------- /TextUtil/Discover/Views/DynamicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Views/DynamicView.h -------------------------------------------------------------------------------- /TextUtil/Discover/Views/DynamicView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Discover/Views/DynamicView.m -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_recive_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_recive_nor.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_recive_nor.imageset/chat_recive_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_recive_nor.imageset/chat_recive_nor@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_recive_press_pic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_recive_press_pic.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_recive_press_pic.imageset/chat_recive_press_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_recive_press_pic.imageset/chat_recive_press_pic@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_send_nor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_send_nor.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_send_nor.imageset/chat_send_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_send_nor.imageset/chat_send_nor@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_send_press_pic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_send_press_pic.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/chat_send_press_pic.imageset/chat_send_press_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/chat_send_press_pic.imageset/chat_send_press_pic@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_collect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_collect.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_collect.imageset/dynamic_collect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_collect.imageset/dynamic_collect@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_collect_select.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_collect_select.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_collect_select.imageset/dynamic_collect_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_collect_select.imageset/dynamic_collect_select@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_comment.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_comment.imageset/dynamic_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_comment.imageset/dynamic_comment@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_comment_select.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_comment_select.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_comment_select.imageset/dynamic_comment_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_comment_select.imageset/dynamic_comment_select@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_love.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_love.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_love.imageset/dynamic_love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_love.imageset/dynamic_love@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_love_blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_love_blue.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_love_blue.imageset/dynamic_love_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_love_blue.imageset/dynamic_love_blue@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_love_select.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_love_select.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/dynamic_love_select.imageset/dynamic_love_select@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/dynamic_love_select.imageset/dynamic_love_select@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/emoticon_keyboard_magnifier.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/emoticon_keyboard_magnifier.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/emoticon_keyboard_magnifier.imageset/emoticon_keyboard_magnifier@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/emoticon_keyboard_magnifier.imageset/emoticon_keyboard_magnifier@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/emotion_btbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/emotion_btbg.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/emotion_btbg.imageset/chatgroup_emotion_btbg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/emotion_btbg.imageset/chatgroup_emotion_btbg@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/header_QQ.imageset/AS_QQ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/header_QQ.imageset/AS_QQ@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/header_QQ.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/header_QQ.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/header_wechat.imageset/AppIcon57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/header_wechat.imageset/AppIcon57x57@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/header_wechat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/header_wechat.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_conversation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_conversation.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_conversation.imageset/tab_conversation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_conversation.imageset/tab_conversation@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_conversation.imageset/tab_conversation@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_conversation.imageset/tab_conversation@3x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_conversation_click.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_conversation_click.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_conversation_click.imageset/tab_conversation_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_conversation_click.imageset/tab_conversation_click@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_conversation_click.imageset/tab_conversation_click@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_conversation_click.imageset/tab_conversation_click@3x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_oa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_oa.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_oa.imageset/tab_oa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_oa.imageset/tab_oa@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_oa.imageset/tab_oa@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_oa.imageset/tab_oa@3x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_oa_click.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_oa_click.imageset/Contents.json -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_oa_click.imageset/tab_oa_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_oa_click.imageset/tab_oa_click@2x.png -------------------------------------------------------------------------------- /TextUtil/Images.xcassets/image/tab_oa_click.imageset/tab_oa_click@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images.xcassets/image/tab_oa_click.imageset/tab_oa_click@3x.png -------------------------------------------------------------------------------- /TextUtil/Images/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/001.png -------------------------------------------------------------------------------- /TextUtil/Images/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/002.png -------------------------------------------------------------------------------- /TextUtil/Images/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/003.png -------------------------------------------------------------------------------- /TextUtil/Images/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/004.png -------------------------------------------------------------------------------- /TextUtil/Images/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/005.png -------------------------------------------------------------------------------- /TextUtil/Images/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/006.png -------------------------------------------------------------------------------- /TextUtil/Images/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/007.png -------------------------------------------------------------------------------- /TextUtil/Images/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/008.png -------------------------------------------------------------------------------- /TextUtil/Images/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/009.png -------------------------------------------------------------------------------- /TextUtil/Images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/010.png -------------------------------------------------------------------------------- /TextUtil/Images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/011.png -------------------------------------------------------------------------------- /TextUtil/Images/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/012.png -------------------------------------------------------------------------------- /TextUtil/Images/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/013.png -------------------------------------------------------------------------------- /TextUtil/Images/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/014.png -------------------------------------------------------------------------------- /TextUtil/Images/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/015.png -------------------------------------------------------------------------------- /TextUtil/Images/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/016.png -------------------------------------------------------------------------------- /TextUtil/Images/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/017.png -------------------------------------------------------------------------------- /TextUtil/Images/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/018.png -------------------------------------------------------------------------------- /TextUtil/Images/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/019.png -------------------------------------------------------------------------------- /TextUtil/Images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/020.png -------------------------------------------------------------------------------- /TextUtil/Images/021@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/021@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/022@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/022@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/023@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/023@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/024@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/024@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/025@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/025@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/026@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/026@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/027@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/027@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/028@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/028@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/029@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/029@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/030@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/030@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/031@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/031@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/032@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/032@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/033@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/033@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/034@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/034@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/035@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/035@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/036@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/036@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/037@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/037@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/038@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/038@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/039@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/039@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/040@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/040@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/041@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/041@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/042@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/042@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/043@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/043@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/044@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/044@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/045@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/045@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/046@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/046@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/047@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/047@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/048@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/048@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/049@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/049@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/050@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/050@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/051@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/051@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/052@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/052@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/053@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/053@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/054@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/054@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/055@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/055@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/056@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/056@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/057@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/057@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/058@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/058@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/059@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/059@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/060@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/060@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/061@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/061@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/062@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/062@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/063@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/063@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/064@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/064@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/065@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/065@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/066@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/066@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/067@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/067@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/068@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/068@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/069@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/069@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/070@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/070@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/071@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/071@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/072@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/072@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/073@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/073@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/074@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/074@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/075@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/075@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/076@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/076@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/077@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/077@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/078@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/078@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/079@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/079@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/080@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/080@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/081@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/081@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/082@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/082@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/083@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/083@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/084@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/084@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/085@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/085@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/086@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/086@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/087@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/087@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/088@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/088@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/089@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/089@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/090@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/090@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/091@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/091@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/092@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/092@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/093@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/093@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/094@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/094@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/095@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/095@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/096@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/096@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/097@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/097@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/098@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/098@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/099@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/099@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/100@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/101@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/101@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/102@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/102@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/103@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/103@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/104@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/104@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/105@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/105@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/ScreenShot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/ScreenShot1.png -------------------------------------------------------------------------------- /TextUtil/Images/ScreenShot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/ScreenShot2.png -------------------------------------------------------------------------------- /TextUtil/Images/ScreenShot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/ScreenShot3.png -------------------------------------------------------------------------------- /TextUtil/Images/emotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/emotion@2x.png -------------------------------------------------------------------------------- /TextUtil/Images/image_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_01.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_02.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_03.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_04.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_05.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_06.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_07.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_08.jpg -------------------------------------------------------------------------------- /TextUtil/Images/image_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Images/image_09.jpg -------------------------------------------------------------------------------- /TextUtil/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Info.plist -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDB.h -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabase.h -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabase.m -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabasePool.h -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabasePool.m -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabaseQueue.h -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMDatabaseQueue.m -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMResultSet.h -------------------------------------------------------------------------------- /TextUtil/OpenSources/FMDB/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/OpenSources/FMDB/FMResultSet.m -------------------------------------------------------------------------------- /TextUtil/TextUtil-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/TextUtil-Prefix.pch -------------------------------------------------------------------------------- /TextUtil/Utils/JKDBHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/JKDBHelper.h -------------------------------------------------------------------------------- /TextUtil/Utils/JKDBHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/JKDBHelper.m -------------------------------------------------------------------------------- /TextUtil/Utils/JKDBModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/JKDBModel.h -------------------------------------------------------------------------------- /TextUtil/Utils/JKDBModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/JKDBModel.m -------------------------------------------------------------------------------- /TextUtil/Utils/UIImage+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/UIImage+Extension.h -------------------------------------------------------------------------------- /TextUtil/Utils/UIImage+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/UIImage+Extension.m -------------------------------------------------------------------------------- /TextUtil/Utils/UIViewExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/UIViewExt.h -------------------------------------------------------------------------------- /TextUtil/Utils/UIViewExt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/UIViewExt.m -------------------------------------------------------------------------------- /TextUtil/Utils/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/Utility.h -------------------------------------------------------------------------------- /TextUtil/Utils/Utility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/Utils/Utility.m -------------------------------------------------------------------------------- /TextUtil/emoticons.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/emoticons.plist -------------------------------------------------------------------------------- /TextUtil/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtil/main.m -------------------------------------------------------------------------------- /TextUtilTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtilTests/Info.plist -------------------------------------------------------------------------------- /TextUtilTests/TextUtilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xhellohaley/TextUtil/HEAD/TextUtilTests/TextUtilTests.m --------------------------------------------------------------------------------