├── .gitignore ├── .swift-version ├── ASLEye.podspec ├── ASLEye └── Classes │ └── ASLEye.swift ├── Example ├── ASLEye.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── ASLEye.xcscmblueprint │ └── xcshareddata │ │ └── xcschemes │ │ ├── ASLEye-Example.xcscheme │ │ └── ASLEye.xcscheme ├── ASLEye.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── ASLEye.xcscmblueprint ├── ASLEye │ ├── ASLEye.h │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── ASLEye.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── ASLEye │ │ ├── ASLEye-dummy.m │ │ ├── ASLEye-prefix.pch │ │ ├── ASLEye-umbrella.h │ │ ├── ASLEye.modulemap │ │ ├── ASLEye.xcconfig │ │ └── Info.plist │ │ ├── Pods-ASLEye_Example │ │ ├── Info.plist │ │ ├── Pods-ASLEye_Example-acknowledgements.markdown │ │ ├── Pods-ASLEye_Example-acknowledgements.plist │ │ ├── Pods-ASLEye_Example-dummy.m │ │ ├── Pods-ASLEye_Example-frameworks.sh │ │ ├── Pods-ASLEye_Example-resources.sh │ │ ├── Pods-ASLEye_Example-umbrella.h │ │ ├── Pods-ASLEye_Example.debug.xcconfig │ │ ├── Pods-ASLEye_Example.modulemap │ │ └── Pods-ASLEye_Example.release.xcconfig │ │ └── Pods-ASLEye_Tests │ │ ├── Info.plist │ │ ├── Pods-ASLEye_Tests-acknowledgements.markdown │ │ ├── Pods-ASLEye_Tests-acknowledgements.plist │ │ ├── Pods-ASLEye_Tests-dummy.m │ │ ├── Pods-ASLEye_Tests-frameworks.sh │ │ ├── Pods-ASLEye_Tests-resources.sh │ │ ├── Pods-ASLEye_Tests-umbrella.h │ │ ├── Pods-ASLEye_Tests.debug.xcconfig │ │ ├── Pods-ASLEye_Tests.modulemap │ │ └── Pods-ASLEye_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /ASLEye.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/ASLEye.podspec -------------------------------------------------------------------------------- /ASLEye/Classes/ASLEye.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/ASLEye/Classes/ASLEye.swift -------------------------------------------------------------------------------- /Example/ASLEye.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ASLEye.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ASLEye.xcodeproj/project.xcworkspace/xcshareddata/ASLEye.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcodeproj/project.xcworkspace/xcshareddata/ASLEye.xcscmblueprint -------------------------------------------------------------------------------- /Example/ASLEye.xcodeproj/xcshareddata/xcschemes/ASLEye-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcodeproj/xcshareddata/xcschemes/ASLEye-Example.xcscheme -------------------------------------------------------------------------------- /Example/ASLEye.xcodeproj/xcshareddata/xcschemes/ASLEye.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcodeproj/xcshareddata/xcschemes/ASLEye.xcscheme -------------------------------------------------------------------------------- /Example/ASLEye.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ASLEye.xcworkspace/xcshareddata/ASLEye.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye.xcworkspace/xcshareddata/ASLEye.xcscmblueprint -------------------------------------------------------------------------------- /Example/ASLEye/ASLEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/ASLEye.h -------------------------------------------------------------------------------- /Example/ASLEye/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ASLEye/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ASLEye/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ASLEye/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ASLEye/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/Info.plist -------------------------------------------------------------------------------- /Example/ASLEye/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/ASLEye/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ASLEye.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Local Podspecs/ASLEye.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ASLEye/ASLEye-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/ASLEye/ASLEye-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ASLEye/ASLEye-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/ASLEye/ASLEye-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ASLEye/ASLEye-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/ASLEye/ASLEye-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ASLEye/ASLEye.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/ASLEye/ASLEye.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ASLEye/ASLEye.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/ASLEye/ASLEye.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ASLEye/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/ASLEye/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Example/Pods-ASLEye_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Pods/Target Support Files/Pods-ASLEye_Tests/Pods-ASLEye_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixun/ASLEye/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------