├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Example ├── HTagView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── HTagView-Example.xcscheme ├── HTagView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── HTagView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── HTagView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── HTagView │ │ ├── HTagView-Info.plist │ │ ├── HTagView-dummy.m │ │ ├── HTagView-prefix.pch │ │ ├── HTagView-umbrella.h │ │ ├── HTagView.modulemap │ │ ├── HTagView.xcconfig │ │ └── Info.plist │ │ ├── Pods-HTagView_Example │ │ ├── Info.plist │ │ ├── Pods-HTagView_Example-Info.plist │ │ ├── Pods-HTagView_Example-acknowledgements.markdown │ │ ├── Pods-HTagView_Example-acknowledgements.plist │ │ ├── Pods-HTagView_Example-dummy.m │ │ ├── Pods-HTagView_Example-frameworks.sh │ │ ├── Pods-HTagView_Example-resources.sh │ │ ├── Pods-HTagView_Example-umbrella.h │ │ ├── Pods-HTagView_Example.debug.xcconfig │ │ ├── Pods-HTagView_Example.modulemap │ │ └── Pods-HTagView_Example.release.xcconfig │ │ └── Pods-HTagView_Tests │ │ ├── Info.plist │ │ ├── Pods-HTagView_Tests-Info.plist │ │ ├── Pods-HTagView_Tests-acknowledgements.markdown │ │ ├── Pods-HTagView_Tests-acknowledgements.plist │ │ ├── Pods-HTagView_Tests-dummy.m │ │ ├── Pods-HTagView_Tests-frameworks.sh │ │ ├── Pods-HTagView_Tests-resources.sh │ │ ├── Pods-HTagView_Tests-umbrella.h │ │ ├── Pods-HTagView_Tests.debug.xcconfig │ │ ├── Pods-HTagView_Tests.modulemap │ │ └── Pods-HTagView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── HTagView.podspec ├── HTagView ├── Assets │ ├── .gitkeep │ └── Images.xcassets │ │ ├── Contents.json │ │ └── close_small.imageset │ │ ├── Contents.json │ │ ├── close-small.png │ │ ├── close-small@2x.png │ │ └── close-small@3x.png └── Classes │ ├── .gitkeep │ ├── Constants.swift │ ├── HTag.swift │ └── HTagView.swift ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/HTagView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HTagView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HTagView.xcodeproj/xcshareddata/xcschemes/HTagView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView.xcodeproj/xcshareddata/xcschemes/HTagView-Example.xcscheme -------------------------------------------------------------------------------- /Example/HTagView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HTagView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/HTagView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/HTagView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/HTagView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HTagView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HTagView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView/Info.plist -------------------------------------------------------------------------------- /Example/HTagView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/HTagView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HTagView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Local Podspecs/HTagView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/HTagView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/HTagView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/HTagView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/HTagView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/HTagView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/HTagView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/HTagView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/HTagView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/HTagView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/HTagView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/HTagView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/HTagView.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HTagView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/HTagView/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Example/Pods-HTagView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Pods/Target Support Files/Pods-HTagView_Tests/Pods-HTagView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /HTagView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView.podspec -------------------------------------------------------------------------------- /HTagView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTagView/Assets/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Assets/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /HTagView/Assets/Images.xcassets/close_small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Assets/Images.xcassets/close_small.imageset/Contents.json -------------------------------------------------------------------------------- /HTagView/Assets/Images.xcassets/close_small.imageset/close-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Assets/Images.xcassets/close_small.imageset/close-small.png -------------------------------------------------------------------------------- /HTagView/Assets/Images.xcassets/close_small.imageset/close-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Assets/Images.xcassets/close_small.imageset/close-small@2x.png -------------------------------------------------------------------------------- /HTagView/Assets/Images.xcassets/close_small.imageset/close-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Assets/Images.xcassets/close_small.imageset/close-small@3x.png -------------------------------------------------------------------------------- /HTagView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTagView/Classes/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Classes/Constants.swift -------------------------------------------------------------------------------- /HTagView/Classes/HTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Classes/HTag.swift -------------------------------------------------------------------------------- /HTagView/Classes/HTagView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/HTagView/Classes/HTagView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popodidi/HTagView/HEAD/demo.gif --------------------------------------------------------------------------------