├── .gitignore ├── Examples ├── Chain Examples.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Examples │ ├── Controls │ │ ├── CAEControlsExample.h │ │ ├── CAEControlsExample.m │ │ └── CAEControlsExample.xib │ ├── Scroll View │ │ ├── CAEScrollViewExample.h │ │ └── CAEScrollViewExample.m │ ├── Stopwatch │ │ ├── CAEStopwatchExample.h │ │ └── CAEStopwatchExample.m │ └── Throttled │ │ ├── CAEThrottledExample.h │ │ └── CAEThrottledExample.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Info.plist └── Sources │ ├── CAEAppDelegate.h │ ├── CAEAppDelegate.m │ ├── CAEExampleViewController.h │ ├── CAEExampleViewController.m │ ├── CAEListViewController.h │ ├── CAEListViewController.m │ ├── Prefix.pch │ └── main.m ├── LICENSE ├── Objective-Chain.podspec ├── Objective-Chain.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── OS X Library.xcscheme │ └── iOS Library.xcscheme ├── README.md ├── Sources ├── Foundation │ ├── Consumers │ │ ├── OCAConsumer.h │ │ ├── OCAInvoker.h │ │ ├── OCAInvoker.m │ │ ├── OCASubscriber.h │ │ ├── OCASubscriber.m │ │ ├── OCASwitch.h │ │ └── OCASwitch.m │ ├── Mediators │ │ ├── OCABridge.h │ │ ├── OCABridge.m │ │ ├── OCAContext.h │ │ ├── OCAContext.m │ │ ├── OCAFilter.h │ │ ├── OCAFilter.m │ │ ├── OCALowPassFilter.h │ │ ├── OCALowPassFilter.m │ │ ├── OCAMediator.h │ │ ├── OCAMediator.m │ │ ├── OCAThrottle.h │ │ └── OCAThrottle.m │ ├── OCAFoundation.h │ ├── OCAObject.h │ ├── OCAObject.m │ ├── Predicates │ │ ├── OCAPredicate.h │ │ └── OCAPredicate.m │ ├── Producers │ │ ├── OCACommand.h │ │ ├── OCACommand.m │ │ ├── OCAHub.h │ │ ├── OCAHub.m │ │ ├── OCAInterpolator.h │ │ ├── OCAInterpolator.m │ │ ├── OCANotificator.h │ │ ├── OCANotificator.m │ │ ├── OCAProducer+Subclass.h │ │ ├── OCAProducer.h │ │ ├── OCAProducer.m │ │ ├── OCAProperty.h │ │ ├── OCAProperty.m │ │ ├── OCATimer.h │ │ └── OCATimer.m │ ├── Transformers │ │ ├── OCAMath.h │ │ ├── OCAMath.m │ │ ├── OCATransformer+Base.h │ │ ├── OCATransformer+Base.m │ │ ├── OCATransformer+Collections.h │ │ ├── OCATransformer+Collections.m │ │ ├── OCATransformer+Core.h │ │ ├── OCATransformer+Core.m │ │ ├── OCATransformer+NSData.h │ │ ├── OCATransformer+NSData.m │ │ ├── OCATransformer+NSDate.h │ │ ├── OCATransformer+NSDate.m │ │ ├── OCATransformer+NSString.h │ │ ├── OCATransformer+NSString.m │ │ └── OCATransformer.h │ └── Utilities │ │ ├── Accessors │ │ ├── OCAAccessor.h │ │ ├── OCAAccessor.m │ │ ├── OCAIndexAccessor.h │ │ ├── OCAIndexAccessor.m │ │ ├── OCAKeyPathAccessor.h │ │ ├── OCAKeyPathAccessor.m │ │ ├── OCAStructureAccessor.h │ │ └── OCAStructureAccessor.m │ │ ├── NSArray+Ordinals.h │ │ ├── NSArray+Ordinals.m │ │ ├── NSValue+Boxing.h │ │ ├── NSValue+Boxing.m │ │ ├── OCADebug.h │ │ ├── OCADebug.m │ │ ├── OCADecomposer.h │ │ ├── OCADecomposer.m │ │ ├── OCAInvocationCatcher.h │ │ ├── OCAInvocationCatcher.m │ │ ├── OCAKeyValueChange.h │ │ ├── OCAKeyValueChange.m │ │ ├── OCAMutableArrayProxy.h │ │ ├── OCAMutableArrayProxy.m │ │ ├── OCAPlaceholderObject.h │ │ ├── OCAPlaceholderObject.m │ │ ├── OCAQueue.h │ │ ├── OCAQueue.m │ │ ├── OCASemaphore.h │ │ ├── OCASemaphore.m │ │ ├── OCASwizzling.h │ │ ├── OCASwizzling.m │ │ ├── OCAVariadic.h │ │ └── OCAVariadic.m ├── Geometry │ ├── OCAGeometry+Functions.h │ ├── OCAGeometry+Functions.m │ ├── OCAGeometry.h │ ├── Predicates │ │ ├── OCAPredicate+CATransform3D.h │ │ ├── OCAPredicate+CATransform3D.m │ │ ├── OCAPredicate+CGAffineTransform.h │ │ ├── OCAPredicate+CGAffineTransform.m │ │ ├── OCAPredicate+CGPoint.h │ │ ├── OCAPredicate+CGPoint.m │ │ ├── OCAPredicate+CGRect.h │ │ ├── OCAPredicate+CGRect.m │ │ ├── OCAPredicate+CGSize.h │ │ ├── OCAPredicate+CGSize.m │ │ ├── OCAPredicate+UIEdgeInsets.h │ │ └── OCAPredicate+UIEdgeInsets.m │ └── Transformers │ │ ├── OCATransformer+CATransform3D.h │ │ ├── OCATransformer+CATransform3D.m │ │ ├── OCATransformer+CGAffineTransform.h │ │ ├── OCATransformer+CGAffineTransform.m │ │ ├── OCATransformer+CGPoint.h │ │ ├── OCATransformer+CGPoint.m │ │ ├── OCATransformer+CGRect.h │ │ ├── OCATransformer+CGRect.m │ │ ├── OCATransformer+CGSize.h │ │ ├── OCATransformer+CGSize.m │ │ ├── OCATransformer+UIEdgeInsets.h │ │ └── OCATransformer+UIEdgeInsets.m ├── ObjectiveChain.h ├── README.md └── UIKit │ ├── Consumers │ ├── OCAUIKit+UIButton.h │ └── OCAUIKit+UIButton.m │ ├── Mediators │ ├── OCAContext+UIKit.h │ ├── OCAContext+UIKit.m │ ├── OCAFader.h │ └── OCAFader.m │ ├── OCAUIKit.h │ ├── Producers │ ├── OCATargetter.h │ ├── OCATargetter.m │ ├── UITextField+editedText.h │ ├── UITextField+editedText.m │ ├── UIView+Gestures.h │ ├── UIView+Gestures.m │ ├── UIView+tintColor.h │ └── UIView+tintColor.m │ ├── Transformers │ ├── OCATransformer+UIColor.h │ ├── OCATransformer+UIColor.m │ ├── OCATransformer+UIImage.h │ └── OCATransformer+UIImage.m │ └── Utilities │ ├── OCAErrorRecoveryAttempter.h │ └── OCAErrorRecoveryAttempter.m └── Tests ├── Info.plist ├── OCAAccessorTest.m ├── OCAConnectionTest.m ├── OCAFilterTest.m ├── OCAFoundationTest.m ├── OCAHubTest.m ├── OCAInterpolatorTest.m ├── OCAInvokerTest.m ├── OCAMathTest.m ├── OCAObjectTest.m ├── OCAPropertyTest.m ├── OCAQueueTest.m ├── OCASwitchTest.m ├── OCAThrottleTest.m ├── OCATransformerTest.m ├── OCAVariadicTest.m └── Prefix.pch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/.gitignore -------------------------------------------------------------------------------- /Examples/Chain Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Chain Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Chain Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Chain Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Examples/Controls/CAEControlsExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Controls/CAEControlsExample.h -------------------------------------------------------------------------------- /Examples/Examples/Controls/CAEControlsExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Controls/CAEControlsExample.m -------------------------------------------------------------------------------- /Examples/Examples/Controls/CAEControlsExample.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Controls/CAEControlsExample.xib -------------------------------------------------------------------------------- /Examples/Examples/Scroll View/CAEScrollViewExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Scroll View/CAEScrollViewExample.h -------------------------------------------------------------------------------- /Examples/Examples/Scroll View/CAEScrollViewExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Scroll View/CAEScrollViewExample.m -------------------------------------------------------------------------------- /Examples/Examples/Stopwatch/CAEStopwatchExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Stopwatch/CAEStopwatchExample.h -------------------------------------------------------------------------------- /Examples/Examples/Stopwatch/CAEStopwatchExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Stopwatch/CAEStopwatchExample.m -------------------------------------------------------------------------------- /Examples/Examples/Throttled/CAEThrottledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Throttled/CAEThrottledExample.h -------------------------------------------------------------------------------- /Examples/Examples/Throttled/CAEThrottledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Examples/Throttled/CAEThrottledExample.m -------------------------------------------------------------------------------- /Examples/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Info.plist -------------------------------------------------------------------------------- /Examples/Sources/CAEAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/CAEAppDelegate.h -------------------------------------------------------------------------------- /Examples/Sources/CAEAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/CAEAppDelegate.m -------------------------------------------------------------------------------- /Examples/Sources/CAEExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/CAEExampleViewController.h -------------------------------------------------------------------------------- /Examples/Sources/CAEExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/CAEExampleViewController.m -------------------------------------------------------------------------------- /Examples/Sources/CAEListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/CAEListViewController.h -------------------------------------------------------------------------------- /Examples/Sources/CAEListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/CAEListViewController.m -------------------------------------------------------------------------------- /Examples/Sources/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/Prefix.pch -------------------------------------------------------------------------------- /Examples/Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Examples/Sources/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/LICENSE -------------------------------------------------------------------------------- /Objective-Chain.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Objective-Chain.podspec -------------------------------------------------------------------------------- /Objective-Chain.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Objective-Chain.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Objective-Chain.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Objective-Chain.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Objective-Chain.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Objective-Chain.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Objective-Chain.xcodeproj/xcshareddata/xcschemes/OS X Library.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Objective-Chain.xcodeproj/xcshareddata/xcschemes/OS X Library.xcscheme -------------------------------------------------------------------------------- /Objective-Chain.xcodeproj/xcshareddata/xcschemes/iOS Library.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Objective-Chain.xcodeproj/xcshareddata/xcschemes/iOS Library.xcscheme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCAConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCAConsumer.h -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCAInvoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCAInvoker.h -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCAInvoker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCAInvoker.m -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCASubscriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCASubscriber.h -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCASubscriber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCASubscriber.m -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCASwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCASwitch.h -------------------------------------------------------------------------------- /Sources/Foundation/Consumers/OCASwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Consumers/OCASwitch.m -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCABridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCABridge.h -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCABridge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCABridge.m -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAContext.h -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAContext.m -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAFilter.h -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAFilter.m -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCALowPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCALowPassFilter.h -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCALowPassFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCALowPassFilter.m -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAMediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAMediator.h -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAMediator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAMediator.m -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAThrottle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAThrottle.h -------------------------------------------------------------------------------- /Sources/Foundation/Mediators/OCAThrottle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Mediators/OCAThrottle.m -------------------------------------------------------------------------------- /Sources/Foundation/OCAFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/OCAFoundation.h -------------------------------------------------------------------------------- /Sources/Foundation/OCAObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/OCAObject.h -------------------------------------------------------------------------------- /Sources/Foundation/OCAObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/OCAObject.m -------------------------------------------------------------------------------- /Sources/Foundation/Predicates/OCAPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Predicates/OCAPredicate.h -------------------------------------------------------------------------------- /Sources/Foundation/Predicates/OCAPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Predicates/OCAPredicate.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCACommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCACommand.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCACommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCACommand.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAHub.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAHub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAHub.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAInterpolator.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAInterpolator.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCANotificator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCANotificator.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCANotificator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCANotificator.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAProducer+Subclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAProducer+Subclass.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAProducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAProducer.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAProducer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAProducer.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAProperty.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCAProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCAProperty.m -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCATimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCATimer.h -------------------------------------------------------------------------------- /Sources/Foundation/Producers/OCATimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Producers/OCATimer.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCAMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCAMath.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCAMath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCAMath.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+Base.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+Base.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+Base.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+Collections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+Collections.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+Collections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+Collections.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+Core.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+Core.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+Core.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+NSData.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+NSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+NSData.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+NSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+NSDate.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+NSDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+NSDate.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+NSString.h -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer+NSString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer+NSString.m -------------------------------------------------------------------------------- /Sources/Foundation/Transformers/OCATransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Transformers/OCATransformer.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAAccessor.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAAccessor.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAIndexAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAIndexAccessor.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAIndexAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAIndexAccessor.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAKeyPathAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAKeyPathAccessor.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAKeyPathAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAKeyPathAccessor.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAStructureAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAStructureAccessor.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/Accessors/OCAStructureAccessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/Accessors/OCAStructureAccessor.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/NSArray+Ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/NSArray+Ordinals.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/NSArray+Ordinals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/NSArray+Ordinals.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/NSValue+Boxing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/NSValue+Boxing.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/NSValue+Boxing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/NSValue+Boxing.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCADebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCADebug.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCADebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCADebug.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCADecomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCADecomposer.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCADecomposer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCADecomposer.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAInvocationCatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAInvocationCatcher.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAInvocationCatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAInvocationCatcher.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAKeyValueChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAKeyValueChange.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAKeyValueChange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAKeyValueChange.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAMutableArrayProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAMutableArrayProxy.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAMutableArrayProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAMutableArrayProxy.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAPlaceholderObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAPlaceholderObject.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAPlaceholderObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAPlaceholderObject.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAQueue.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAQueue.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCASemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCASemaphore.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCASemaphore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCASemaphore.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCASwizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCASwizzling.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCASwizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCASwizzling.m -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAVariadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAVariadic.h -------------------------------------------------------------------------------- /Sources/Foundation/Utilities/OCAVariadic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Foundation/Utilities/OCAVariadic.m -------------------------------------------------------------------------------- /Sources/Geometry/OCAGeometry+Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/OCAGeometry+Functions.h -------------------------------------------------------------------------------- /Sources/Geometry/OCAGeometry+Functions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/OCAGeometry+Functions.m -------------------------------------------------------------------------------- /Sources/Geometry/OCAGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/OCAGeometry.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CATransform3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CATransform3D.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CATransform3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CATransform3D.m -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGAffineTransform.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGAffineTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGAffineTransform.m -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGPoint.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGPoint.m -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGRect.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGRect.m -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGSize.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+CGSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+CGSize.m -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+UIEdgeInsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+UIEdgeInsets.h -------------------------------------------------------------------------------- /Sources/Geometry/Predicates/OCAPredicate+UIEdgeInsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Predicates/OCAPredicate+UIEdgeInsets.m -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CATransform3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CATransform3D.h -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CATransform3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CATransform3D.m -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGAffineTransform.h -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGAffineTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGAffineTransform.m -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGPoint.h -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGPoint.m -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGRect.h -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGRect.m -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGSize.h -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+CGSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+CGSize.m -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+UIEdgeInsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+UIEdgeInsets.h -------------------------------------------------------------------------------- /Sources/Geometry/Transformers/OCATransformer+UIEdgeInsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/Geometry/Transformers/OCATransformer+UIEdgeInsets.m -------------------------------------------------------------------------------- /Sources/ObjectiveChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/ObjectiveChain.h -------------------------------------------------------------------------------- /Sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/README.md -------------------------------------------------------------------------------- /Sources/UIKit/Consumers/OCAUIKit+UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Consumers/OCAUIKit+UIButton.h -------------------------------------------------------------------------------- /Sources/UIKit/Consumers/OCAUIKit+UIButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Consumers/OCAUIKit+UIButton.m -------------------------------------------------------------------------------- /Sources/UIKit/Mediators/OCAContext+UIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Mediators/OCAContext+UIKit.h -------------------------------------------------------------------------------- /Sources/UIKit/Mediators/OCAContext+UIKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Mediators/OCAContext+UIKit.m -------------------------------------------------------------------------------- /Sources/UIKit/Mediators/OCAFader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Mediators/OCAFader.h -------------------------------------------------------------------------------- /Sources/UIKit/Mediators/OCAFader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Mediators/OCAFader.m -------------------------------------------------------------------------------- /Sources/UIKit/OCAUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/OCAUIKit.h -------------------------------------------------------------------------------- /Sources/UIKit/Producers/OCATargetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/OCATargetter.h -------------------------------------------------------------------------------- /Sources/UIKit/Producers/OCATargetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/OCATargetter.m -------------------------------------------------------------------------------- /Sources/UIKit/Producers/UITextField+editedText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/UITextField+editedText.h -------------------------------------------------------------------------------- /Sources/UIKit/Producers/UITextField+editedText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/UITextField+editedText.m -------------------------------------------------------------------------------- /Sources/UIKit/Producers/UIView+Gestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/UIView+Gestures.h -------------------------------------------------------------------------------- /Sources/UIKit/Producers/UIView+Gestures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/UIView+Gestures.m -------------------------------------------------------------------------------- /Sources/UIKit/Producers/UIView+tintColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/UIView+tintColor.h -------------------------------------------------------------------------------- /Sources/UIKit/Producers/UIView+tintColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Producers/UIView+tintColor.m -------------------------------------------------------------------------------- /Sources/UIKit/Transformers/OCATransformer+UIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Transformers/OCATransformer+UIColor.h -------------------------------------------------------------------------------- /Sources/UIKit/Transformers/OCATransformer+UIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Transformers/OCATransformer+UIColor.m -------------------------------------------------------------------------------- /Sources/UIKit/Transformers/OCATransformer+UIImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Transformers/OCATransformer+UIImage.h -------------------------------------------------------------------------------- /Sources/UIKit/Transformers/OCATransformer+UIImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Transformers/OCATransformer+UIImage.m -------------------------------------------------------------------------------- /Sources/UIKit/Utilities/OCAErrorRecoveryAttempter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Utilities/OCAErrorRecoveryAttempter.h -------------------------------------------------------------------------------- /Sources/UIKit/Utilities/OCAErrorRecoveryAttempter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Sources/UIKit/Utilities/OCAErrorRecoveryAttempter.m -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/OCAAccessorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAAccessorTest.m -------------------------------------------------------------------------------- /Tests/OCAConnectionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAConnectionTest.m -------------------------------------------------------------------------------- /Tests/OCAFilterTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAFilterTest.m -------------------------------------------------------------------------------- /Tests/OCAFoundationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAFoundationTest.m -------------------------------------------------------------------------------- /Tests/OCAHubTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAHubTest.m -------------------------------------------------------------------------------- /Tests/OCAInterpolatorTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAInterpolatorTest.m -------------------------------------------------------------------------------- /Tests/OCAInvokerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAInvokerTest.m -------------------------------------------------------------------------------- /Tests/OCAMathTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAMathTest.m -------------------------------------------------------------------------------- /Tests/OCAObjectTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAObjectTest.m -------------------------------------------------------------------------------- /Tests/OCAPropertyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAPropertyTest.m -------------------------------------------------------------------------------- /Tests/OCAQueueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAQueueTest.m -------------------------------------------------------------------------------- /Tests/OCASwitchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCASwitchTest.m -------------------------------------------------------------------------------- /Tests/OCAThrottleTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAThrottleTest.m -------------------------------------------------------------------------------- /Tests/OCATransformerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCATransformerTest.m -------------------------------------------------------------------------------- /Tests/OCAVariadicTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/OCAVariadicTest.m -------------------------------------------------------------------------------- /Tests/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tricertops/Objective-Chain/HEAD/Tests/Prefix.pch --------------------------------------------------------------------------------