├── .gitignore ├── .swift-version ├── CHANGELOG.md ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── ReadMoreTextView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ReadMoreTextView.xcscheme │ └── Target Support Files │ │ ├── Pods-ReadMoreTextViewExample │ │ ├── Info.plist │ │ ├── Pods-ReadMoreTextViewExample-acknowledgements.markdown │ │ ├── Pods-ReadMoreTextViewExample-acknowledgements.plist │ │ ├── Pods-ReadMoreTextViewExample-dummy.m │ │ ├── Pods-ReadMoreTextViewExample-frameworks.sh │ │ ├── Pods-ReadMoreTextViewExample-resources.sh │ │ ├── Pods-ReadMoreTextViewExample-umbrella.h │ │ ├── Pods-ReadMoreTextViewExample.debug.xcconfig │ │ ├── Pods-ReadMoreTextViewExample.modulemap │ │ └── Pods-ReadMoreTextViewExample.release.xcconfig │ │ └── ReadMoreTextView │ │ ├── Info.plist │ │ ├── ReadMoreTextView-dummy.m │ │ ├── ReadMoreTextView-prefix.pch │ │ ├── ReadMoreTextView-umbrella.h │ │ ├── ReadMoreTextView.modulemap │ │ └── ReadMoreTextView.xcconfig ├── ReadMoreTextView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ReadMoreTextView.xcworkspace │ └── contents.xcworkspacedata └── ReadMoreTextView │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md ├── ReadMoreTextView.podspec ├── Sources ├── ReadMoreTextView.swift └── UITextView+Extensions.swift └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ReadMoreTextView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Local Podspecs/ReadMoreTextView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ReadMoreTextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ReadMoreTextView.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/Pods-ReadMoreTextViewExample/Pods-ReadMoreTextViewExample.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ReadMoreTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/ReadMoreTextView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/Pods/Target Support Files/ReadMoreTextView/ReadMoreTextView.xcconfig -------------------------------------------------------------------------------- /Example/ReadMoreTextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ReadMoreTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ReadMoreTextView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ReadMoreTextView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ReadMoreTextView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ReadMoreTextView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ReadMoreTextView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ReadMoreTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView/Info.plist -------------------------------------------------------------------------------- /Example/ReadMoreTextView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Example/ReadMoreTextView/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/README.md -------------------------------------------------------------------------------- /ReadMoreTextView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/ReadMoreTextView.podspec -------------------------------------------------------------------------------- /Sources/ReadMoreTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Sources/ReadMoreTextView.swift -------------------------------------------------------------------------------- /Sources/UITextView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/Sources/UITextView+Extensions.swift -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilyapuchka/ReadMoreTextView/HEAD/screenshot.gif --------------------------------------------------------------------------------