├── .gitignore ├── Classes ├── AXError+DFBase.swift ├── AXObserver+DFBase.swift ├── AXUIElement+DFAction.swift ├── AXUIElement+DFApplication.swift ├── AXUIElement+DFAttribute.swift ├── AXUIElement+DFBase.swift ├── AXUIElement+DFPermission.swift ├── AXUIElement+DFWindow.swift ├── AXValue+DFBase.swift ├── DFAXObserverCenter.swift ├── DFAXUIElementBridging-Header.h ├── DFCGWindowInfoHelper.swift └── DFNSRunningApplicaitonHelper.swift ├── DFAXUIElement.podspec ├── DFAXUIElementExample ├── DFAXUIElementExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DFAXUIElementExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DFAXUIElementExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── DFAXUIElementExample.entitlements │ ├── Info.plist │ ├── ViewController+AXObserver.swift │ ├── ViewController+Permission.swift │ ├── ViewController+TableView.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── DFAXUIElement │ ├── Classes │ │ ├── AXError+DFBase.swift │ │ ├── AXObserver+DFBase.swift │ │ ├── AXUIElement+DFAction.swift │ │ ├── AXUIElement+DFApplication.swift │ │ ├── AXUIElement+DFAttribute.swift │ │ ├── AXUIElement+DFBase.swift │ │ ├── AXUIElement+DFPermission.swift │ │ ├── AXUIElement+DFWindow.swift │ │ ├── AXValue+DFBase.swift │ │ ├── DFAXObserverCenter.swift │ │ ├── DFAXUIElementBridging-Header.h │ │ ├── DFCGWindowInfoHelper.swift │ │ └── DFNSRunningApplicaitonHelper.swift │ ├── LICENSE │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── DFAXUIElement │ ├── DFAXUIElement-Info.plist │ ├── DFAXUIElement-dummy.m │ ├── DFAXUIElement-prefix.pch │ ├── DFAXUIElement-umbrella.h │ ├── DFAXUIElement.debug.xcconfig │ ├── DFAXUIElement.modulemap │ └── DFAXUIElement.release.xcconfig │ └── Pods-DFAXUIElementExample │ ├── Pods-DFAXUIElementExample-Info.plist │ ├── Pods-DFAXUIElementExample-acknowledgements.markdown │ ├── Pods-DFAXUIElementExample-acknowledgements.plist │ ├── Pods-DFAXUIElementExample-dummy.m │ ├── Pods-DFAXUIElementExample-frameworks-Debug-input-files.xcfilelist │ ├── Pods-DFAXUIElementExample-frameworks-Debug-output-files.xcfilelist │ ├── Pods-DFAXUIElementExample-frameworks-Release-input-files.xcfilelist │ ├── Pods-DFAXUIElementExample-frameworks-Release-output-files.xcfilelist │ ├── Pods-DFAXUIElementExample-frameworks.sh │ ├── Pods-DFAXUIElementExample-umbrella.h │ ├── Pods-DFAXUIElementExample.debug.xcconfig │ ├── Pods-DFAXUIElementExample.modulemap │ └── Pods-DFAXUIElementExample.release.xcconfig ├── LICENSE ├── README-Chinese.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/AXError+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXError+DFBase.swift -------------------------------------------------------------------------------- /Classes/AXObserver+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXObserver+DFBase.swift -------------------------------------------------------------------------------- /Classes/AXUIElement+DFAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXUIElement+DFAction.swift -------------------------------------------------------------------------------- /Classes/AXUIElement+DFApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXUIElement+DFApplication.swift -------------------------------------------------------------------------------- /Classes/AXUIElement+DFAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXUIElement+DFAttribute.swift -------------------------------------------------------------------------------- /Classes/AXUIElement+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXUIElement+DFBase.swift -------------------------------------------------------------------------------- /Classes/AXUIElement+DFPermission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXUIElement+DFPermission.swift -------------------------------------------------------------------------------- /Classes/AXUIElement+DFWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXUIElement+DFWindow.swift -------------------------------------------------------------------------------- /Classes/AXValue+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/AXValue+DFBase.swift -------------------------------------------------------------------------------- /Classes/DFAXObserverCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/DFAXObserverCenter.swift -------------------------------------------------------------------------------- /Classes/DFAXUIElementBridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/DFAXUIElementBridging-Header.h -------------------------------------------------------------------------------- /Classes/DFCGWindowInfoHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/DFCGWindowInfoHelper.swift -------------------------------------------------------------------------------- /Classes/DFNSRunningApplicaitonHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/Classes/DFNSRunningApplicaitonHelper.swift -------------------------------------------------------------------------------- /DFAXUIElement.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElement.podspec -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/AppDelegate.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/DFAXUIElementExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/DFAXUIElementExample.entitlements -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/Info.plist -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/ViewController+AXObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/ViewController+AXObserver.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/ViewController+Permission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/ViewController+Permission.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/ViewController+TableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/ViewController+TableView.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/DFAXUIElementExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/DFAXUIElementExample/ViewController.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Podfile -------------------------------------------------------------------------------- /DFAXUIElementExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Podfile.lock -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXError+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXError+DFBase.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXObserver+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXObserver+DFBase.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFAction.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFApplication.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFAttribute.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFBase.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFPermission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFPermission.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXUIElement+DFWindow.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXValue+DFBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/AXValue+DFBase.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFAXObserverCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFAXObserverCenter.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFAXUIElementBridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFAXUIElementBridging-Header.h -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFCGWindowInfoHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFCGWindowInfoHelper.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFNSRunningApplicaitonHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/Classes/DFNSRunningApplicaitonHelper.swift -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/LICENSE -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/DFAXUIElement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/DFAXUIElement/README.md -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-Info.plist -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-dummy.m -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-prefix.pch -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement-umbrella.h -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement.debug.xcconfig -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement.modulemap -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/DFAXUIElement/DFAXUIElement.release.xcconfig -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-Info.plist -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-acknowledgements.markdown -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-acknowledgements.plist -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-dummy.m -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DFAXUIElement.framework -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DFAXUIElement.framework -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-frameworks.sh -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample-umbrella.h -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample.debug.xcconfig -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample.modulemap -------------------------------------------------------------------------------- /DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/DFAXUIElementExample/Pods/Target Support Files/Pods-DFAXUIElementExample/Pods-DFAXUIElementExample.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/LICENSE -------------------------------------------------------------------------------- /README-Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/README-Chinese.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevilFinger/DFAXUIElement/HEAD/README.md --------------------------------------------------------------------------------