├── .gitignore ├── .swiftlint.yml ├── Example ├── Example.xcodeproj │ └── project.pbxproj └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Background.imageset │ │ ├── Background.jpg │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SpotlightWrapper.swift │ └── ViewController.swift ├── LRSpotlight.podspec ├── License.md ├── README.md ├── Spotlight.gif ├── Spotlight.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Spotlight.xcscheme ├── Spotlight.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── Spotlight ├── Info.plist ├── Sources ├── Assets.xcassets │ ├── Close.imageset │ │ ├── Close.pdf │ │ └── Contents.json │ └── Contents.json ├── Spotlight.swift ├── SpotlightNode.swift ├── SpotlightTarget.swift ├── SpotlightView.swift ├── SpotlightViewController+UISetup.swift ├── SpotlightViewController.swift └── UIKitExtensions.swift └── Spotlight.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Background.imageset/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Assets.xcassets/Background.imageset/Background.jpg -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Assets.xcassets/Background.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/SpotlightWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/SpotlightWrapper.swift -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /LRSpotlight.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/LRSpotlight.podspec -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/README.md -------------------------------------------------------------------------------- /Spotlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight.gif -------------------------------------------------------------------------------- /Spotlight.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Spotlight.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Spotlight.xcodeproj/xcshareddata/xcschemes/Spotlight.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight.xcodeproj/xcshareddata/xcschemes/Spotlight.xcscheme -------------------------------------------------------------------------------- /Spotlight.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Spotlight.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Spotlight/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Info.plist -------------------------------------------------------------------------------- /Spotlight/Sources/Assets.xcassets/Close.imageset/Close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/Assets.xcassets/Close.imageset/Close.pdf -------------------------------------------------------------------------------- /Spotlight/Sources/Assets.xcassets/Close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/Assets.xcassets/Close.imageset/Contents.json -------------------------------------------------------------------------------- /Spotlight/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Spotlight/Sources/Spotlight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/Spotlight.swift -------------------------------------------------------------------------------- /Spotlight/Sources/SpotlightNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/SpotlightNode.swift -------------------------------------------------------------------------------- /Spotlight/Sources/SpotlightTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/SpotlightTarget.swift -------------------------------------------------------------------------------- /Spotlight/Sources/SpotlightView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/SpotlightView.swift -------------------------------------------------------------------------------- /Spotlight/Sources/SpotlightViewController+UISetup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/SpotlightViewController+UISetup.swift -------------------------------------------------------------------------------- /Spotlight/Sources/SpotlightViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/SpotlightViewController.swift -------------------------------------------------------------------------------- /Spotlight/Sources/UIKitExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Sources/UIKitExtensions.swift -------------------------------------------------------------------------------- /Spotlight/Spotlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lekshmiraveendranath/Spotlight/HEAD/Spotlight/Spotlight.h --------------------------------------------------------------------------------