├── .gitignore ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Example │ ├── Base.lproj │ └── MainMenu.xib │ ├── Example-Info.plist │ ├── Example-Prefix.pch │ ├── INDAppDelegate.h │ ├── INDAppDelegate.m │ ├── INDTableCellView.h │ ├── INDTableCellView.m │ ├── INDTableRowView.h │ ├── INDTableRowView.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings │ └── main.m ├── INDSequentialTextSelectionManager.h ├── INDSequentialTextSelectionManager.m ├── LICENSE ├── README.md └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example/Example/Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/Example-Info.plist -------------------------------------------------------------------------------- /Example/Example/Example-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/Example-Prefix.pch -------------------------------------------------------------------------------- /Example/Example/INDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/INDAppDelegate.h -------------------------------------------------------------------------------- /Example/Example/INDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/INDAppDelegate.m -------------------------------------------------------------------------------- /Example/Example/INDTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/INDTableCellView.h -------------------------------------------------------------------------------- /Example/Example/INDTableCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/INDTableCellView.m -------------------------------------------------------------------------------- /Example/Example/INDTableRowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/INDTableRowView.h -------------------------------------------------------------------------------- /Example/Example/INDTableRowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/INDTableRowView.m -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Example/Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/Example/Example/main.m -------------------------------------------------------------------------------- /INDSequentialTextSelectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/INDSequentialTextSelectionManager.h -------------------------------------------------------------------------------- /INDSequentialTextSelectionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/INDSequentialTextSelectionManager.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indragiek/INDSequentialTextSelectionManager/HEAD/demo.gif --------------------------------------------------------------------------------