gitextract_cu9877x5/ ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── .xctool-args ├── CHANGELOG.md ├── Examples/ │ ├── Messenger-Programatic/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── main.m │ ├── Messenger-Shared/ │ │ ├── Bridge-Header.h │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Icons/ │ │ │ │ ├── Contents.json │ │ │ │ ├── icn_append.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icn_arrow_down.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icn_arrow_up.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icn_editing.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icn_pic.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icn_typing.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── icn_upload.imageset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Message.h │ │ ├── Message.m │ │ ├── MessageTableViewCell.h │ │ ├── MessageTableViewCell.m │ │ ├── MessageTextView.h │ │ ├── MessageTextView.m │ │ ├── MessageViewController.h │ │ ├── MessageViewController.m │ │ ├── TypingIndicatorView.h │ │ └── TypingIndicatorView.m │ ├── Messenger-Storyboard/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Messenger-Swift/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── MessageViewController.swift │ ├── Messenger-iPad-Sheet/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── main.m │ ├── Messenger.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── Messenger.xccheckout │ ├── Messenger.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ └── Pods/ │ ├── Local Podspecs/ │ │ └── SlackTextViewController.podspec.json │ ├── LoremIpsum/ │ │ ├── License.markdown │ │ ├── LoremIpsum/ │ │ │ ├── LoremIpsum.h │ │ │ └── LoremIpsum.m │ │ └── Readme.markdown │ ├── Pods.xcodeproj/ │ │ └── project.pbxproj │ └── Target Support Files/ │ ├── LoremIpsum/ │ │ ├── LoremIpsum-dummy.m │ │ ├── LoremIpsum-prefix.pch │ │ └── LoremIpsum.xcconfig │ ├── Pods/ │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── SlackTextViewController/ │ ├── SlackTextViewController-dummy.m │ ├── SlackTextViewController-prefix.pch │ └── SlackTextViewController.xcconfig ├── File Templates/ │ ├── SlackTextView Controller.xctemplate/ │ │ ├── TemplateInfo.plist │ │ ├── UICollectionView/ │ │ │ ├── ___FILEBASENAME___.h │ │ │ └── ___FILEBASENAME___.m │ │ └── UITableView/ │ │ ├── ___FILEBASENAME___.h │ │ └── ___FILEBASENAME___.m │ └── install.sh ├── Gemfile ├── LICENSE ├── README.md ├── SlackTextViewController/ │ ├── SlackTextViewController/ │ │ ├── Info.plist │ │ └── SlackTextViewController.h │ ├── SlackTextViewController.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── xcbaselines/ │ │ │ └── F5B4E78D1C4DA053005CBBE0.xcbaseline/ │ │ │ ├── F8445E9E-5B76-4616-90F9-7D94D0E1142F.plist │ │ │ └── Info.plist │ │ └── xcschemes/ │ │ ├── SlackTextViewController.xcscheme │ │ └── SlackTextViewControllerTests.xcscheme │ └── SlackTextViewControllerTests/ │ ├── FrameworkTests.m │ └── Info.plist ├── SlackTextViewController.podspec └── Source/ ├── SLKInputAccessoryView.h ├── SLKInputAccessoryView.m ├── SLKTextInput+Implementation.m ├── SLKTextInput.h ├── SLKTextInputbar.h ├── SLKTextInputbar.m ├── SLKTextView+SLKAdditions.h ├── SLKTextView+SLKAdditions.m ├── SLKTextView.h ├── SLKTextView.m ├── SLKTextViewController.h ├── SLKTextViewController.m ├── SLKTypingIndicatorProtocol.h ├── SLKTypingIndicatorView.h ├── SLKTypingIndicatorView.m ├── SLKUIConstants.h ├── UIResponder+SLKAdditions.h ├── UIResponder+SLKAdditions.m ├── UIScrollView+SLKAdditions.h ├── UIScrollView+SLKAdditions.m ├── UIView+SLKAdditions.h └── UIView+SLKAdditions.m