├── .gitignore ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ ├── KZPPresenterInfoViewController.xib │ └── Main.storyboard └── Classes │ ├── .gitkeep │ ├── Components │ ├── Animation │ │ ├── KZPAnimatorComponent.h │ │ └── KZPAnimatorComponent.m │ ├── Controls │ │ ├── Action │ │ │ ├── KZPActionComponent.h │ │ │ └── KZPActionComponent.m │ │ └── ValueAdjust │ │ │ ├── KZPValueAdjustComponent.h │ │ │ └── KZPValueAdjustComponent.m │ ├── Images │ │ └── ImagePicker │ │ │ ├── AssetBrowser │ │ │ ├── KZPImagePickerCollectionViewController.h │ │ │ └── KZPImagePickerCollectionViewController.m │ │ │ ├── KZPImagePickerComponent.h │ │ │ └── KZPImagePickerComponent.m │ ├── KZPComponent.h │ ├── KZPSnapshotView.h │ ├── Presenter │ │ ├── KZPPresenterComponent.h │ │ ├── KZPPresenterComponent.m │ │ ├── KZPPresenterInfoViewController.h │ │ └── KZPPresenterInfoViewController.m │ └── Synchronization │ │ ├── KZPSynchronizationComponent.h │ │ └── KZPSynchronizationComponent.m │ ├── Playground │ ├── KZPPlayground+Internal.h │ ├── KZPPlayground.h │ ├── KZPPlayground.m │ ├── KZPPlaygroundViewController.h │ └── KZPPlaygroundViewController.m │ └── Timeline │ ├── KZPTimelineViewController.h │ └── KZPTimelineViewController.m ├── README.md ├── SwiftExample ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ ├── KZPlayground │ │ │ │ ├── KZPActionComponent.h │ │ │ │ ├── KZPAnimatorComponent.h │ │ │ │ ├── KZPComponent.h │ │ │ │ ├── KZPImagePickerCollectionViewController.h │ │ │ │ ├── KZPImagePickerComponent.h │ │ │ │ ├── KZPPlayground+Internal.h │ │ │ │ ├── KZPPlayground.h │ │ │ │ ├── KZPPlaygroundViewController.h │ │ │ │ ├── KZPPresenterComponent.h │ │ │ │ ├── KZPPresenterInfoViewController.h │ │ │ │ ├── KZPSnapshotView.h │ │ │ │ ├── KZPSynchronizationComponent.h │ │ │ │ ├── KZPTimelineViewController.h │ │ │ │ └── KZPValueAdjustComponent.h │ │ │ ├── NHBalancedFlowLayout │ │ │ │ ├── NHBalancedFlowLayout.h │ │ │ │ └── NHLinearPartition.h │ │ │ ├── RSSwizzle │ │ │ │ └── RSSwizzle.h │ │ │ └── dyci │ │ │ │ ├── NSObject+DyCInjection.h │ │ │ │ ├── NSSet+ClassesList.h │ │ │ │ ├── SFDynamicCodeInjection.h │ │ │ │ ├── SFFileWatcher.h │ │ │ │ ├── SFFileWatcherDelegate.h │ │ │ │ ├── SFInjectionsNotificationsCenter.h │ │ │ │ ├── UINib+StoryBoardSupport.h │ │ │ │ └── UIViewController+XIBSupport.h │ │ └── Public │ │ │ └── Reveal-iOS-SDK │ │ │ └── Reveal │ │ │ ├── IBANetServiceTypes.h │ │ │ ├── IBARevealLoader.h │ │ │ ├── IBARevealLogger.h │ │ │ └── Reveal.h │ ├── Local Podspecs │ │ └── KZPlayground.podspec.json │ ├── Manifest.lock │ ├── NHBalancedFlowLayout │ │ ├── LICENSE │ │ ├── NHBalancedFlowLayout │ │ │ ├── NHBalancedFlowLayout.h │ │ │ ├── NHBalancedFlowLayout.m │ │ │ ├── NHLinearPartition.h │ │ │ └── NHLinearPartition.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── KZPlayground.xcscheme │ ├── RSSwizzle │ │ ├── LICENSE │ │ ├── README.md │ │ └── RSSwizzle │ │ │ ├── RSSwizzle.h │ │ │ └── RSSwizzle.m │ ├── Reveal-iOS-SDK │ │ └── Reveal-Framework-1.6.1 │ │ │ └── Reveal.framework │ │ │ ├── Headers │ │ │ ├── Reveal │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── IBANetServiceTypes.h │ │ │ │ ├── IBARevealLoader.h │ │ │ │ ├── IBARevealLogger.h │ │ │ │ └── Reveal.h │ │ │ └── Reveal │ │ │ └── Current │ ├── Target Support Files │ │ ├── KZPlayground │ │ │ ├── Info.plist │ │ │ ├── KZPlayground-dummy.m │ │ │ ├── KZPlayground-prefix.pch │ │ │ ├── KZPlayground-umbrella.h │ │ │ ├── KZPlayground.modulemap │ │ │ └── KZPlayground.xcconfig │ │ ├── NHBalancedFlowLayout │ │ │ ├── Info.plist │ │ │ ├── NHBalancedFlowLayout-dummy.m │ │ │ ├── NHBalancedFlowLayout-prefix.pch │ │ │ ├── NHBalancedFlowLayout-umbrella.h │ │ │ ├── NHBalancedFlowLayout.modulemap │ │ │ └── NHBalancedFlowLayout.xcconfig │ │ ├── Pods-SwiftExample │ │ │ ├── Info.plist │ │ │ ├── Pods-SwiftExample-acknowledgements.markdown │ │ │ ├── Pods-SwiftExample-acknowledgements.plist │ │ │ ├── Pods-SwiftExample-dummy.m │ │ │ ├── Pods-SwiftExample-frameworks.sh │ │ │ ├── Pods-SwiftExample-resources.sh │ │ │ ├── Pods-SwiftExample-umbrella.h │ │ │ ├── Pods-SwiftExample.debug.xcconfig │ │ │ ├── Pods-SwiftExample.modulemap │ │ │ └── Pods-SwiftExample.release.xcconfig │ │ ├── RSSwizzle │ │ │ ├── Info.plist │ │ │ ├── RSSwizzle-dummy.m │ │ │ ├── RSSwizzle-prefix.pch │ │ │ ├── RSSwizzle-umbrella.h │ │ │ ├── RSSwizzle.modulemap │ │ │ └── RSSwizzle.xcconfig │ │ └── dyci │ │ │ ├── Info.plist │ │ │ ├── dyci-dummy.m │ │ │ ├── dyci-prefix.pch │ │ │ ├── dyci-umbrella.h │ │ │ ├── dyci.modulemap │ │ │ └── dyci.xcconfig │ └── dyci │ │ ├── Dynamic Code Injection │ │ └── dyci │ │ │ └── Classes │ │ │ ├── Categories │ │ │ ├── NSSet+ClassesList.h │ │ │ └── NSSet+ClassesList.m │ │ │ ├── FileWatcher │ │ │ ├── SFFileWatcher.h │ │ │ ├── SFFileWatcher.m │ │ │ └── SFFileWatcherDelegate.h │ │ │ ├── Injections │ │ │ ├── NSObject+DyCInjection.h │ │ │ ├── NSObject+DyCInjection.m │ │ │ ├── UINib+StoryBoardSupport.h │ │ │ ├── UINib+StoryBoardSupport.m │ │ │ ├── UIViewController+XIBSupport.h │ │ │ └── UIViewController+XIBSupport.m │ │ │ ├── Notifications │ │ │ ├── SFInjectionsNotificationsCenter.h │ │ │ └── SFInjectionsNotificationsCenter.m │ │ │ ├── SFDynamicCodeInjection.h │ │ │ └── SFDynamicCodeInjection.m │ │ ├── LICENSE.md │ │ └── README.md ├── SwiftExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SwiftExample.xcworkspace │ └── contents.xcworkspacedata ├── SwiftExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── background.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ │ ├── content.imageset │ │ │ ├── Contents.json │ │ │ └── scrollList.png │ │ └── statusBar.imageset │ │ │ ├── Contents.json │ │ │ └── statusBar.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── PlaygroundExample.swift │ ├── RememberView.swift │ └── RememberView.xib └── iOSInjectionProject │ ├── BundleContents.h │ ├── BundleContents.m │ ├── InjectionBundle-Info.plist │ ├── InjectionBundle-Prefix.pch │ ├── InjectionBundle.xcodeproj │ └── project.pbxproj │ └── x86_64 │ ├── built.txt │ ├── compile_commands.sh │ ├── identity.txt │ └── injecting_class.o └── details.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Assets/KZPPresenterInfoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Assets/KZPPresenterInfoViewController.xib -------------------------------------------------------------------------------- /Pod/Assets/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Assets/Main.storyboard -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/Components/Animation/KZPAnimatorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Animation/KZPAnimatorComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Animation/KZPAnimatorComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Animation/KZPAnimatorComponent.m -------------------------------------------------------------------------------- /Pod/Classes/Components/Controls/Action/KZPActionComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Controls/Action/KZPActionComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Controls/Action/KZPActionComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Controls/Action/KZPActionComponent.m -------------------------------------------------------------------------------- /Pod/Classes/Components/Controls/ValueAdjust/KZPValueAdjustComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Controls/ValueAdjust/KZPValueAdjustComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Controls/ValueAdjust/KZPValueAdjustComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Controls/ValueAdjust/KZPValueAdjustComponent.m -------------------------------------------------------------------------------- /Pod/Classes/Components/Images/ImagePicker/AssetBrowser/KZPImagePickerCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Images/ImagePicker/AssetBrowser/KZPImagePickerCollectionViewController.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Images/ImagePicker/AssetBrowser/KZPImagePickerCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Images/ImagePicker/AssetBrowser/KZPImagePickerCollectionViewController.m -------------------------------------------------------------------------------- /Pod/Classes/Components/Images/ImagePicker/KZPImagePickerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Images/ImagePicker/KZPImagePickerComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Images/ImagePicker/KZPImagePickerComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Images/ImagePicker/KZPImagePickerComponent.m -------------------------------------------------------------------------------- /Pod/Classes/Components/KZPComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/KZPComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/KZPSnapshotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/KZPSnapshotView.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Presenter/KZPPresenterComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Presenter/KZPPresenterComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Presenter/KZPPresenterComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Presenter/KZPPresenterComponent.m -------------------------------------------------------------------------------- /Pod/Classes/Components/Presenter/KZPPresenterInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Presenter/KZPPresenterInfoViewController.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Presenter/KZPPresenterInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Presenter/KZPPresenterInfoViewController.m -------------------------------------------------------------------------------- /Pod/Classes/Components/Synchronization/KZPSynchronizationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Synchronization/KZPSynchronizationComponent.h -------------------------------------------------------------------------------- /Pod/Classes/Components/Synchronization/KZPSynchronizationComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Components/Synchronization/KZPSynchronizationComponent.m -------------------------------------------------------------------------------- /Pod/Classes/Playground/KZPPlayground+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Playground/KZPPlayground+Internal.h -------------------------------------------------------------------------------- /Pod/Classes/Playground/KZPPlayground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Playground/KZPPlayground.h -------------------------------------------------------------------------------- /Pod/Classes/Playground/KZPPlayground.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Playground/KZPPlayground.m -------------------------------------------------------------------------------- /Pod/Classes/Playground/KZPPlaygroundViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Playground/KZPPlaygroundViewController.h -------------------------------------------------------------------------------- /Pod/Classes/Playground/KZPPlaygroundViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Playground/KZPPlaygroundViewController.m -------------------------------------------------------------------------------- /Pod/Classes/Timeline/KZPTimelineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Timeline/KZPTimelineViewController.h -------------------------------------------------------------------------------- /Pod/Classes/Timeline/KZPTimelineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/Pod/Classes/Timeline/KZPTimelineViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/README.md -------------------------------------------------------------------------------- /SwiftExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Podfile -------------------------------------------------------------------------------- /SwiftExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Podfile.lock -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPActionComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Controls/Action/KZPActionComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPAnimatorComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Animation/KZPAnimatorComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/KZPComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPImagePickerCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Images/ImagePicker/AssetBrowser/KZPImagePickerCollectionViewController.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPImagePickerComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Images/ImagePicker/KZPImagePickerComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPPlayground+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Playground/KZPPlayground+Internal.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPPlayground.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Playground/KZPPlayground.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPPlaygroundViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Playground/KZPPlaygroundViewController.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPPresenterComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Presenter/KZPPresenterComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPPresenterInfoViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Presenter/KZPPresenterInfoViewController.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPSnapshotView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/KZPSnapshotView.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPSynchronizationComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Synchronization/KZPSynchronizationComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPTimelineViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Timeline/KZPTimelineViewController.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/KZPlayground/KZPValueAdjustComponent.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/Components/Controls/ValueAdjust/KZPValueAdjustComponent.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/NHBalancedFlowLayout/NHBalancedFlowLayout.h: -------------------------------------------------------------------------------- 1 | ../../../NHBalancedFlowLayout/NHBalancedFlowLayout/NHBalancedFlowLayout.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/NHBalancedFlowLayout/NHLinearPartition.h: -------------------------------------------------------------------------------- 1 | ../../../NHBalancedFlowLayout/NHBalancedFlowLayout/NHLinearPartition.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/RSSwizzle/RSSwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../RSSwizzle/RSSwizzle/RSSwizzle.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/NSObject+DyCInjection.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/Injections/NSObject+DyCInjection.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/NSSet+ClassesList.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/Categories/NSSet+ClassesList.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/SFDynamicCodeInjection.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/SFDynamicCodeInjection.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/SFFileWatcher.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcher.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/SFFileWatcherDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcherDelegate.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/SFInjectionsNotificationsCenter.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/Notifications/SFInjectionsNotificationsCenter.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/UINib+StoryBoardSupport.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/Injections/UINib+StoryBoardSupport.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Private/dyci/UIViewController+XIBSupport.h: -------------------------------------------------------------------------------- 1 | ../../../dyci/Dynamic Code Injection/dyci/Classes/Injections/UIViewController+XIBSupport.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Public/Reveal-iOS-SDK/Reveal/IBANetServiceTypes.h: -------------------------------------------------------------------------------- 1 | ../../../../Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBANetServiceTypes.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Public/Reveal-iOS-SDK/Reveal/IBARevealLoader.h: -------------------------------------------------------------------------------- 1 | ../../../../Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBARevealLoader.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Public/Reveal-iOS-SDK/Reveal/IBARevealLogger.h: -------------------------------------------------------------------------------- 1 | ../../../../Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBARevealLogger.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Headers/Public/Reveal-iOS-SDK/Reveal/Reveal.h: -------------------------------------------------------------------------------- 1 | ../../../../Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/Reveal.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Local Podspecs/KZPlayground.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Local Podspecs/KZPlayground.podspec.json -------------------------------------------------------------------------------- /SwiftExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /SwiftExample/Pods/NHBalancedFlowLayout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/NHBalancedFlowLayout/LICENSE -------------------------------------------------------------------------------- /SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHBalancedFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHBalancedFlowLayout.h -------------------------------------------------------------------------------- /SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHBalancedFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHBalancedFlowLayout.m -------------------------------------------------------------------------------- /SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHLinearPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHLinearPartition.h -------------------------------------------------------------------------------- /SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHLinearPartition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/NHBalancedFlowLayout/NHBalancedFlowLayout/NHLinearPartition.m -------------------------------------------------------------------------------- /SwiftExample/Pods/NHBalancedFlowLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/NHBalancedFlowLayout/README.md -------------------------------------------------------------------------------- /SwiftExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/KZPlayground.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/KZPlayground.xcscheme -------------------------------------------------------------------------------- /SwiftExample/Pods/RSSwizzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/RSSwizzle/LICENSE -------------------------------------------------------------------------------- /SwiftExample/Pods/RSSwizzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/RSSwizzle/README.md -------------------------------------------------------------------------------- /SwiftExample/Pods/RSSwizzle/RSSwizzle/RSSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/RSSwizzle/RSSwizzle/RSSwizzle.h -------------------------------------------------------------------------------- /SwiftExample/Pods/RSSwizzle/RSSwizzle/RSSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/RSSwizzle/RSSwizzle/RSSwizzle.m -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Reveal: -------------------------------------------------------------------------------- 1 | Versions/Current/Reveal -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBANetServiceTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBANetServiceTypes.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBARevealLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBARevealLoader.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBARevealLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/IBARevealLogger.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/Reveal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Headers/Reveal.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Reveal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/A/Reveal -------------------------------------------------------------------------------- /SwiftExample/Pods/Reveal-iOS-SDK/Reveal-Framework-1.6.1/Reveal.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/KZPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/KZPlayground/Info.plist -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground-dummy.m -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground-prefix.pch -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground-umbrella.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground.modulemap -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/KZPlayground/KZPlayground.xcconfig -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/Info.plist -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout-dummy.m -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout-prefix.pch -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout-umbrella.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout.modulemap -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/NHBalancedFlowLayout/NHBalancedFlowLayout.xcconfig -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Info.plist -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-acknowledgements.markdown -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-acknowledgements.plist -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-dummy.m -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-frameworks.sh -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-resources.sh -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-umbrella.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample.debug.xcconfig -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample.modulemap -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/Pods-SwiftExample/Pods-SwiftExample.release.xcconfig -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/RSSwizzle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/RSSwizzle/Info.plist -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle-dummy.m -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle-prefix.pch -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle-umbrella.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle.modulemap -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/RSSwizzle/RSSwizzle.xcconfig -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/dyci/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/dyci/Info.plist -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/dyci/dyci-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/dyci/dyci-dummy.m -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/dyci/dyci-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/dyci/dyci-prefix.pch -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/dyci/dyci-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/dyci/dyci-umbrella.h -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/dyci/dyci.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/dyci/dyci.modulemap -------------------------------------------------------------------------------- /SwiftExample/Pods/Target Support Files/dyci/dyci.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/Target Support Files/dyci/dyci.xcconfig -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Categories/NSSet+ClassesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Categories/NSSet+ClassesList.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Categories/NSSet+ClassesList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Categories/NSSet+ClassesList.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcher.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcher.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcherDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/FileWatcher/SFFileWatcherDelegate.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/NSObject+DyCInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/NSObject+DyCInjection.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/NSObject+DyCInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/NSObject+DyCInjection.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UINib+StoryBoardSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UINib+StoryBoardSupport.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UINib+StoryBoardSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UINib+StoryBoardSupport.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UIViewController+XIBSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UIViewController+XIBSupport.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UIViewController+XIBSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Injections/UIViewController+XIBSupport.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Notifications/SFInjectionsNotificationsCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Notifications/SFInjectionsNotificationsCenter.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Notifications/SFInjectionsNotificationsCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/Notifications/SFInjectionsNotificationsCenter.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/SFDynamicCodeInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/SFDynamicCodeInjection.h -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/SFDynamicCodeInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/Dynamic Code Injection/dyci/Classes/SFDynamicCodeInjection.m -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/LICENSE.md -------------------------------------------------------------------------------- /SwiftExample/Pods/dyci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/Pods/dyci/README.md -------------------------------------------------------------------------------- /SwiftExample/SwiftExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftExample/SwiftExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftExample/SwiftExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/background.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/background.imageset/background.png -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/content.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/content.imageset/scrollList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/content.imageset/scrollList.png -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/statusBar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/statusBar.imageset/Contents.json -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Assets.xcassets/statusBar.imageset/statusBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Assets.xcassets/statusBar.imageset/statusBar.png -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/Info.plist -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/PlaygroundExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/PlaygroundExample.swift -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/RememberView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/RememberView.swift -------------------------------------------------------------------------------- /SwiftExample/SwiftExample/RememberView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/SwiftExample/RememberView.xib -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/BundleContents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/BundleContents.h -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/BundleContents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/BundleContents.m -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/InjectionBundle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/InjectionBundle-Info.plist -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/InjectionBundle-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/InjectionBundle-Prefix.pch -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/InjectionBundle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/InjectionBundle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/x86_64/built.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/x86_64/compile_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/x86_64/compile_commands.sh -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/x86_64/identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/x86_64/identity.txt -------------------------------------------------------------------------------- /SwiftExample/iOSInjectionProject/x86_64/injecting_class.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/SwiftExample/iOSInjectionProject/x86_64/injecting_class.o -------------------------------------------------------------------------------- /details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztofzablocki/DetailsMatter/HEAD/details.gif --------------------------------------------------------------------------------