├── .buckconfig ├── .buckversion ├── .editorconfig ├── .github ├── GITHUB_RULES.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .slather.yml ├── .travis.yml ├── ASDKListKit ├── ASDKListKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ASDKListKit.xcworkspace │ └── contents.xcworkspacedata ├── ASDKListKitTests │ ├── ASListKitTestAdapterDataSource.h │ ├── ASListKitTestAdapterDataSource.m │ ├── ASListKitTests.m │ ├── ASListTestCellNode.h │ ├── ASListTestCellNode.m │ ├── ASListTestObject.h │ ├── ASListTestObject.m │ ├── ASListTestSection.h │ ├── ASListTestSection.m │ ├── ASListTestSupplementaryNode.h │ ├── ASListTestSupplementaryNode.m │ ├── ASListTestSupplementarySource.h │ ├── ASListTestSupplementarySource.m │ ├── ASXCTExtensions.h │ └── Info.plist └── Podfile ├── AsyncDisplayKit.podspec ├── AsyncDisplayKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── AsyncDisplayKit.xcscheme ├── AsyncDisplayKit.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── WorkspaceSettings.xcsettings ├── BUCK ├── CONTRIBUTING.md ├── Cartfile ├── Gemfile ├── LICENSE ├── PATENTS ├── Podfile ├── README.md ├── Source ├── ASBlockTypes.h ├── ASButtonNode.h ├── ASButtonNode.mm ├── ASCellNode.h ├── ASCellNode.mm ├── ASCollectionNode+Beta.h ├── ASCollectionNode.h ├── ASCollectionNode.mm ├── ASCollectionView.h ├── ASCollectionView.mm ├── ASCollectionViewLayoutFacilitatorProtocol.h ├── ASCollectionViewProtocols.h ├── ASContextTransitioning.h ├── ASControlNode+Subclasses.h ├── ASControlNode.h ├── ASControlNode.mm ├── ASDisplayNode+Beta.h ├── ASDisplayNode+Convenience.h ├── ASDisplayNode+Convenience.m ├── ASDisplayNode+Deprecated.h ├── ASDisplayNode+Subclasses.h ├── ASDisplayNode+Yoga.mm ├── ASDisplayNode.h ├── ASDisplayNode.mm ├── ASDisplayNodeExtras.h ├── ASDisplayNodeExtras.mm ├── ASEditableTextNode.h ├── ASEditableTextNode.mm ├── ASImageNode+AnimatedImage.mm ├── ASImageNode.h ├── ASImageNode.mm ├── ASMapNode.h ├── ASMapNode.mm ├── ASMultiplexImageNode.h ├── ASMultiplexImageNode.mm ├── ASNavigationController.h ├── ASNavigationController.m ├── ASNetworkImageNode.h ├── ASNetworkImageNode.mm ├── ASNodeController+Beta.h ├── ASNodeController+Beta.m ├── ASPagerFlowLayout.h ├── ASPagerFlowLayout.m ├── ASPagerNode.h ├── ASPagerNode.m ├── ASRunLoopQueue.h ├── ASRunLoopQueue.mm ├── ASScrollNode.h ├── ASScrollNode.mm ├── ASSectionController.h ├── ASSupplementaryNodeSource.h ├── ASTabBarController.h ├── ASTabBarController.m ├── ASTableNode.h ├── ASTableNode.mm ├── ASTableView.h ├── ASTableView.mm ├── ASTableViewInternal.h ├── ASTableViewProtocols.h ├── ASTextNode+Beta.h ├── ASTextNode.h ├── ASTextNode.mm ├── ASVideoNode.h ├── ASVideoNode.mm ├── ASVideoPlayerNode.h ├── ASVideoPlayerNode.mm ├── ASViewController.h ├── ASViewController.mm ├── ASVisibilityProtocols.h ├── ASVisibilityProtocols.m ├── AsyncDisplayKit+IGListKitMethods.h ├── AsyncDisplayKit+IGListKitMethods.m ├── AsyncDisplayKit.h ├── AsyncDisplayKit.modulemap ├── Base │ ├── ASAssert.h │ ├── ASAvailability.h │ ├── ASBaseDefines.h │ ├── ASEqualityHelpers.h │ └── ASLog.h ├── Debug │ ├── AsyncDisplayKit+Debug.h │ └── AsyncDisplayKit+Debug.m ├── Details │ ├── ASAbstractLayoutController.h │ ├── ASAbstractLayoutController.mm │ ├── ASBasicImageDownloader.h │ ├── ASBasicImageDownloader.mm │ ├── ASBatchContext.h │ ├── ASBatchContext.mm │ ├── ASCollectionElement.h │ ├── ASCollectionElement.mm │ ├── ASCollectionFlowLayoutDelegate.h │ ├── ASCollectionFlowLayoutDelegate.m │ ├── ASCollectionInternal.h │ ├── ASCollectionInternal.m │ ├── ASCollectionLayoutContext.h │ ├── ASCollectionLayoutContext.mm │ ├── ASCollectionLayoutDelegate.h │ ├── ASCollectionLayoutState.h │ ├── ASCollectionLayoutState.m │ ├── ASCollectionViewLayoutController.h │ ├── ASCollectionViewLayoutController.m │ ├── ASCollectionViewLayoutInspector.h │ ├── ASCollectionViewLayoutInspector.m │ ├── ASDataController.h │ ├── ASDataController.mm │ ├── ASDelegateProxy.h │ ├── ASDelegateProxy.m │ ├── ASElementMap.h │ ├── ASElementMap.m │ ├── ASEventLog.h │ ├── ASEventLog.mm │ ├── ASHighlightOverlayLayer.h │ ├── ASHighlightOverlayLayer.mm │ ├── ASImageContainerProtocolCategories.h │ ├── ASImageContainerProtocolCategories.m │ ├── ASImageProtocols.h │ ├── ASLayoutController.h │ ├── ASLayoutRangeType.h │ ├── ASMainSerialQueue.h │ ├── ASMainSerialQueue.mm │ ├── ASMutableAttributedStringBuilder.h │ ├── ASMutableAttributedStringBuilder.m │ ├── ASObjectDescriptionHelpers.h │ ├── ASObjectDescriptionHelpers.m │ ├── ASPINRemoteImageDownloader.h │ ├── ASPINRemoteImageDownloader.m │ ├── ASPhotosFrameworkImageRequest.h │ ├── ASPhotosFrameworkImageRequest.m │ ├── ASRangeController.h │ ├── ASRangeController.mm │ ├── ASRangeControllerUpdateRangeProtocol+Beta.h │ ├── ASScrollDirection.h │ ├── ASScrollDirection.m │ ├── ASSectionContext.h │ ├── ASTableLayoutController.h │ ├── ASTableLayoutController.m │ ├── ASThread.h │ ├── ASTraceEvent.h │ ├── ASTraceEvent.m │ ├── ASTraitCollection.h │ ├── ASTraitCollection.m │ ├── ASWeakProxy.h │ ├── ASWeakProxy.m │ ├── ASWeakSet.h │ ├── ASWeakSet.m │ ├── CoreGraphics+ASConvenience.h │ ├── CoreGraphics+ASConvenience.m │ ├── NSArray+Diffing.h │ ├── NSArray+Diffing.m │ ├── NSIndexSet+ASHelpers.h │ ├── NSIndexSet+ASHelpers.m │ ├── NSMutableAttributedString+TextKitAdditions.h │ ├── NSMutableAttributedString+TextKitAdditions.m │ ├── Transactions │ │ ├── _ASAsyncTransaction.h │ │ ├── _ASAsyncTransaction.mm │ │ ├── _ASAsyncTransactionContainer+Private.h │ │ ├── _ASAsyncTransactionContainer.h │ │ ├── _ASAsyncTransactionContainer.m │ │ ├── _ASAsyncTransactionGroup.h │ │ └── _ASAsyncTransactionGroup.m │ ├── UICollectionViewLayout+ASConvenience.h │ ├── UICollectionViewLayout+ASConvenience.m │ ├── UIView+ASConvenience.h │ ├── _ASCollectionReusableView.h │ ├── _ASCollectionReusableView.m │ ├── _ASCollectionViewCell.h │ ├── _ASCollectionViewCell.m │ ├── _ASDisplayLayer.h │ ├── _ASDisplayLayer.mm │ ├── _ASDisplayView.h │ ├── _ASDisplayView.mm │ ├── _ASDisplayViewAccessiblity.h │ └── _ASDisplayViewAccessiblity.mm ├── IGListAdapter+AsyncDisplayKit.h ├── IGListAdapter+AsyncDisplayKit.m ├── Info.plist ├── Layout │ ├── ASAbsoluteLayoutElement.h │ ├── ASAbsoluteLayoutSpec.h │ ├── ASAbsoluteLayoutSpec.mm │ ├── ASAsciiArtBoxCreator.h │ ├── ASAsciiArtBoxCreator.m │ ├── ASBackgroundLayoutSpec.h │ ├── ASBackgroundLayoutSpec.mm │ ├── ASCenterLayoutSpec.h │ ├── ASCenterLayoutSpec.mm │ ├── ASDimension.h │ ├── ASDimension.mm │ ├── ASDimensionDeprecated.h │ ├── ASDimensionDeprecated.mm │ ├── ASDimensionInternal.h │ ├── ASDimensionInternal.mm │ ├── ASInsetLayoutSpec.h │ ├── ASInsetLayoutSpec.mm │ ├── ASLayout.h │ ├── ASLayout.mm │ ├── ASLayoutElement.h │ ├── ASLayoutElement.mm │ ├── ASLayoutElementExtensibility.h │ ├── ASLayoutElementPrivate.h │ ├── ASLayoutSpec+Subclasses.h │ ├── ASLayoutSpec+Subclasses.mm │ ├── ASLayoutSpec.h │ ├── ASLayoutSpec.mm │ ├── ASOverlayLayoutSpec.h │ ├── ASOverlayLayoutSpec.mm │ ├── ASRatioLayoutSpec.h │ ├── ASRatioLayoutSpec.mm │ ├── ASRelativeLayoutSpec.h │ ├── ASRelativeLayoutSpec.mm │ ├── ASStackLayoutDefines.h │ ├── ASStackLayoutElement.h │ ├── ASStackLayoutSpec.h │ └── ASStackLayoutSpec.mm ├── Private │ ├── ASBasicImageDownloaderInternal.h │ ├── ASBatchFetching.h │ ├── ASBatchFetching.m │ ├── ASCellNode+Internal.h │ ├── ASCollectionLayout.h │ ├── ASCollectionLayout.mm │ ├── ASCollectionLayoutContext+Private.h │ ├── ASCollectionView+Undeprecated.h │ ├── ASCollectionViewFlowLayoutInspector.h │ ├── ASCollectionViewFlowLayoutInspector.m │ ├── ASControlTargetAction.h │ ├── ASControlTargetAction.m │ ├── ASDefaultPlayButton.h │ ├── ASDefaultPlayButton.m │ ├── ASDefaultPlaybackButton.h │ ├── ASDefaultPlaybackButton.m │ ├── ASDispatch.h │ ├── ASDisplayNode+AsyncDisplay.mm │ ├── ASDisplayNode+DebugTiming.h │ ├── ASDisplayNode+DebugTiming.mm │ ├── ASDisplayNode+FrameworkPrivate.h │ ├── ASDisplayNode+FrameworkSubclasses.h │ ├── ASDisplayNode+UIViewBridge.mm │ ├── ASDisplayNodeInternal.h │ ├── ASDisplayNodeLayout.h │ ├── ASDisplayNodeLayout.mm │ ├── ASEqualityHashHelpers.h │ ├── ASEqualityHashHelpers.mm │ ├── ASIGListAdapterBasedDataSource.h │ ├── ASIGListAdapterBasedDataSource.m │ ├── ASImageNode+AnimatedImagePrivate.h │ ├── ASImageNode+CGExtras.h │ ├── ASImageNode+CGExtras.m │ ├── ASImageNode+Private.h │ ├── ASInternalHelpers.h │ ├── ASInternalHelpers.m │ ├── ASLayoutTransition.h │ ├── ASLayoutTransition.mm │ ├── ASMutableElementMap.h │ ├── ASMutableElementMap.m │ ├── ASPendingStateController.h │ ├── ASPendingStateController.mm │ ├── ASRectTable.h │ ├── ASRectTable.m │ ├── ASResponderChainEnumerator.h │ ├── ASResponderChainEnumerator.m │ ├── ASSection.h │ ├── ASSection.m │ ├── ASTableView+Undeprecated.h │ ├── ASTwoDimensionalArrayUtils.h │ ├── ASTwoDimensionalArrayUtils.m │ ├── ASWeakMap.h │ ├── ASWeakMap.m │ ├── Layout │ │ ├── ASLayoutElementStylePrivate.h │ │ ├── ASLayoutSpecPrivate.h │ │ ├── ASLayoutSpecUtilities.h │ │ ├── ASStackLayoutSpecUtilities.h │ │ ├── ASStackPositionedLayout.h │ │ ├── ASStackPositionedLayout.mm │ │ ├── ASStackUnpositionedLayout.h │ │ └── ASStackUnpositionedLayout.mm │ ├── _ASCoreAnimationExtras.h │ ├── _ASCoreAnimationExtras.mm │ ├── _ASHierarchyChangeSet.h │ ├── _ASHierarchyChangeSet.mm │ ├── _ASPendingState.h │ ├── _ASPendingState.mm │ └── _ASScopeTimer.h ├── TextKit │ ├── ASLayoutManager.h │ ├── ASLayoutManager.m │ ├── ASTextKitAttributes.h │ ├── ASTextKitAttributes.mm │ ├── ASTextKitComponents.h │ ├── ASTextKitComponents.mm │ ├── ASTextKitContext.h │ ├── ASTextKitContext.mm │ ├── ASTextKitCoreTextAdditions.h │ ├── ASTextKitCoreTextAdditions.m │ ├── ASTextKitEntityAttribute.h │ ├── ASTextKitEntityAttribute.m │ ├── ASTextKitFontSizeAdjuster.h │ ├── ASTextKitFontSizeAdjuster.mm │ ├── ASTextKitRenderer+Positioning.h │ ├── ASTextKitRenderer+Positioning.mm │ ├── ASTextKitRenderer+TextChecking.h │ ├── ASTextKitRenderer+TextChecking.mm │ ├── ASTextKitRenderer.h │ ├── ASTextKitRenderer.mm │ ├── ASTextKitShadower.h │ ├── ASTextKitShadower.mm │ ├── ASTextKitTailTruncater.h │ ├── ASTextKitTailTruncater.mm │ ├── ASTextKitTruncating.h │ ├── ASTextNodeTypes.h │ ├── ASTextNodeWordKerner.h │ └── ASTextNodeWordKerner.m ├── UIImage+ASConvenience.h ├── UIImage+ASConvenience.m ├── UIResponder+AsyncDisplayKit.h ├── UIResponder+AsyncDisplayKit.m ├── _ASTransitionContext.h ├── _ASTransitionContext.m └── tvOS │ ├── ASControlNode+tvOS.h │ ├── ASControlNode+tvOS.m │ ├── ASImageNode+tvOS.h │ └── ASImageNode+tvOS.m ├── Tests ├── ASAbsoluteLayoutSpecSnapshotTests.m ├── ASBackgroundLayoutSpecSnapshotTests.mm ├── ASBasicImageDownloaderContextTests.m ├── ASBasicImageDownloaderTests.m ├── ASBatchFetchingTests.m ├── ASBridgedPropertiesTests.mm ├── ASCALayerTests.m ├── ASCenterLayoutSpecSnapshotTests.mm ├── ASCollectionViewFlowLayoutInspectorTests.m ├── ASCollectionViewTests.mm ├── ASControlNodeTests.m ├── ASDimensionTests.mm ├── ASDispatchTests.m ├── ASDisplayLayerTests.m ├── ASDisplayNodeAppearanceTests.m ├── ASDisplayNodeExtrasTests.m ├── ASDisplayNodeImplicitHierarchyTests.m ├── ASDisplayNodeLayoutTests.mm ├── ASDisplayNodeSnapshotTests.m ├── ASDisplayNodeTests.mm ├── ASDisplayNodeTestsHelper.h ├── ASDisplayNodeTestsHelper.m ├── ASEditableTextNodeTests.m ├── ASImageNodeSnapshotTests.m ├── ASInsetLayoutSpecSnapshotTests.mm ├── ASLayoutElementStyleTests.m ├── ASLayoutSpecSnapshotTestsHelper.h ├── ASLayoutSpecSnapshotTestsHelper.m ├── ASLayoutSpecTests.m ├── ASMultiplexImageNodeTests.m ├── ASMutableAttributedStringBuilderTests.m ├── ASNetworkImageNodeTests.m ├── ASOverlayLayoutSpecSnapshotTests.mm ├── ASPagerNodeTests.m ├── ASPerformanceTestContext.h ├── ASPerformanceTestContext.m ├── ASPhotosFrameworkImageRequestTests.m ├── ASRatioLayoutSpecSnapshotTests.mm ├── ASRectTableTests.m ├── ASRelativeLayoutSpecSnapshotTests.mm ├── ASSnapshotTestCase.h ├── ASSnapshotTestCase.m ├── ASStackLayoutSpecSnapshotTests.mm ├── ASTableViewTests.mm ├── ASTableViewThrashTests.m ├── ASTextKitCoreTextAdditionsTests.m ├── ASTextKitTests.mm ├── ASTextKitTruncationTests.mm ├── ASTextNodePerformanceTests.m ├── ASTextNodeSnapshotTests.m ├── ASTextNodeTests.m ├── ASTextNodeWordKernerTests.mm ├── ASUICollectionViewTests.m ├── ASVideoNodeTests.m ├── ASViewControllerTests.m ├── ASWeakMapTests.m ├── ASWeakSetTests.m ├── ASWrapperSpecSnapshotTests.mm ├── ASXCTExtensions.h ├── ArrayDiffingTests.m ├── AsyncDisplayKitTests-Info.plist ├── AsyncDisplayKitTests-Prefix.pch ├── ReferenceImages_64 │ ├── ASAbsoluteLayoutSpecSnapshotTests │ │ ├── testChildrenMeasuredWithAutoMaxSize@2x.png │ │ ├── testSizingBehaviour_overflowChildren@2x.png │ │ ├── testSizingBehaviour_underflowChildren@2x.png │ │ └── testSizingBehaviour_wrappedChildren@2x.png │ ├── ASBackgroundLayoutSpecSnapshotTests │ │ └── testBackground@2x.png │ ├── ASCenterLayoutSpecSnapshotTests │ │ ├── testMinimumSizeRangeIsGivenToChildWhenNotCentering@2x.png │ │ ├── testWithOptions@2x.png │ │ ├── testWithOptions_CenteringX@2x.png │ │ ├── testWithOptions_CenteringXCenteringY@2x.png │ │ ├── testWithOptions_CenteringY@2x.png │ │ ├── testWithSizingOptions@2x.png │ │ ├── testWithSizingOptions_SizingMinimumX@2x.png │ │ ├── testWithSizingOptions_SizingMinimumXSizingMinimumY@2x.png │ │ └── testWithSizingOptions_SizingMinimumY@2x.png │ ├── ASDisplayNodeSnapshotTests │ │ └── testBasicHierarchySnapshotTesting@2x.png │ ├── ASImageNodeSnapshotTests │ │ ├── testForcedScaling_first@2x.png │ │ ├── testForcedScaling_second@2x.png │ │ ├── testRenderLogoSquare@2x.png │ │ ├── testRoundedCornerBlock@2x.png │ │ └── testTintColorBlock@2x.png │ ├── ASInsetLayoutSpecSnapshotTests │ │ ├── testInsetsWithFixedSize_10-10-10-10@2x.png │ │ ├── testInsetsWithFixedSize_10-10-10-inf@2x.png │ │ ├── testInsetsWithFixedSize_10-10-inf-10@2x.png │ │ ├── testInsetsWithFixedSize_10-10-inf-inf@2x.png │ │ ├── testInsetsWithFixedSize_10-inf-10-10@2x.png │ │ ├── testInsetsWithFixedSize_10-inf-10-inf@2x.png │ │ ├── testInsetsWithFixedSize_10-inf-inf-10@2x.png │ │ ├── testInsetsWithFixedSize_10-inf-inf-inf@2x.png │ │ ├── testInsetsWithFixedSize_inf-10-10-10@2x.png │ │ ├── testInsetsWithFixedSize_inf-10-10-inf@2x.png │ │ ├── testInsetsWithFixedSize_inf-10-inf-10@2x.png │ │ ├── testInsetsWithFixedSize_inf-10-inf-inf@2x.png │ │ ├── testInsetsWithFixedSize_inf-inf-10-10@2x.png │ │ ├── testInsetsWithFixedSize_inf-inf-10-inf@2x.png │ │ ├── testInsetsWithFixedSize_inf-inf-inf-10@2x.png │ │ ├── testInsetsWithFixedSize_inf-inf-inf-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-0-0-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-0-0-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-0-inf-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-0-inf-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-inf-0-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-inf-0-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-inf-inf-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_0-inf-inf-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-0-0-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-0-0-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-0-inf-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-0-inf-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-inf-0-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-inf-0-inf@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-inf-inf-0@2x.png │ │ ├── testInsetsWithInfinityAndZeroInsetValue_inf-inf-inf-inf@2x.png │ │ ├── testInsetsWithVariableSize_10-10-10-10@2x.png │ │ ├── testInsetsWithVariableSize_10-10-10-inf@2x.png │ │ ├── testInsetsWithVariableSize_10-10-inf-10@2x.png │ │ ├── testInsetsWithVariableSize_10-10-inf-inf@2x.png │ │ ├── testInsetsWithVariableSize_10-inf-10-10@2x.png │ │ ├── testInsetsWithVariableSize_10-inf-10-inf@2x.png │ │ ├── testInsetsWithVariableSize_10-inf-inf-10@2x.png │ │ ├── testInsetsWithVariableSize_10-inf-inf-inf@2x.png │ │ ├── testInsetsWithVariableSize_inf-10-10-10@2x.png │ │ ├── testInsetsWithVariableSize_inf-10-10-inf@2x.png │ │ ├── testInsetsWithVariableSize_inf-10-inf-10@2x.png │ │ ├── testInsetsWithVariableSize_inf-10-inf-inf@2x.png │ │ ├── testInsetsWithVariableSize_inf-inf-10-10@2x.png │ │ ├── testInsetsWithVariableSize_inf-inf-10-inf@2x.png │ │ ├── testInsetsWithVariableSize_inf-inf-inf-10@2x.png │ │ └── testInsetsWithVariableSize_inf-inf-inf-inf@2x.png │ ├── ASOverlayLayoutSpecSnapshotTests │ │ └── testOverlay@2x.png │ ├── ASRatioLayoutSpecSnapshotTests │ │ ├── testRatioLayout_DoubleRatio@2x.png │ │ ├── testRatioLayout_HalfRatio@2x.png │ │ ├── testRatioLayout_SevenTimesRatio@2x.png │ │ └── testRatioLayout_TenTimesRatioWithItemTooBig@2x.png │ ├── ASRelativeLayoutSpecSnapshotTests │ │ ├── testMinimumSizeRangeIsGivenToChildWhenNotPositioning@2x.png │ │ ├── testWithOptions@2x.png │ │ ├── testWithOptions_CenterX@2x.png │ │ ├── testWithOptions_CenterXCenterY@2x.png │ │ ├── testWithOptions_CenterXEndY@2x.png │ │ ├── testWithOptions_CenterY@2x.png │ │ ├── testWithOptions_EndX@2x.png │ │ ├── testWithOptions_EndXCenterY@2x.png │ │ ├── testWithOptions_EndXEndY@2x.png │ │ ├── testWithOptions_EndY@2x.png │ │ ├── testWithSizingOptions@2x.png │ │ ├── testWithSizingOptions_SizingMinimumHeight@2x.png │ │ ├── testWithSizingOptions_SizingMinimumWidth@2x.png │ │ └── testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@2x.png │ ├── ASStackLayoutSpecSnapshotTests │ │ ├── testAlignCenterWithFlexedMainDimension@2x.png │ │ ├── testAlignCenterWithIndefiniteCrossDimension@2x.png │ │ ├── testAlignContentOverflow_alignContentCenter@2x.png │ │ ├── testAlignContentOverflow_alignContentEnd@2x.png │ │ ├── testAlignContentOverflow_alignContentSpaceAround@2x.png │ │ ├── testAlignContentOverflow_alignContentSpaceBetween@2x.png │ │ ├── testAlignContentOverflow_alignContentStart@2x.png │ │ ├── testAlignContentStretchAndOtherAlignments@2x.png │ │ ├── testAlignContentUnderflow_alignContentCenter@2x.png │ │ ├── testAlignContentUnderflow_alignContentEnd@2x.png │ │ ├── testAlignContentUnderflow_alignContentSpaceAround@2x.png │ │ ├── testAlignContentUnderflow_alignContentSpaceBetween@2x.png │ │ ├── testAlignContentUnderflow_alignContentStart@2x.png │ │ ├── testAlignContentUnderflow_alignContentStretch@2x.png │ │ ├── testAlignContentWithUnconstrainedCrossSize@2x.png │ │ ├── testAlignedCenter@2x.png │ │ ├── testAlignedEnd@2x.png │ │ ├── testAlignedStart@2x.png │ │ ├── testAlignedStretchNoChildExceedsMin@2x.png │ │ ├── testAlignedStretchOneChildExceedsMin@2x.png │ │ ├── testBaselineAlignmentWithSpaceBetween@2x.png │ │ ├── testBaselineAlignmentWithStretchedItem@2x.png │ │ ├── testBaselineAlignment_baselineFirst@2x.png │ │ ├── testBaselineAlignment_baselineLast@2x.png │ │ ├── testChildSpacing_spacingAfter@2x.png │ │ ├── testChildSpacing_spacingBalancedOut@2x.png │ │ ├── testChildSpacing_spacingBefore@2x.png │ │ ├── testChildThatChangesCrossSizeWhenMainSizeIsFlexed@2x.png │ │ ├── testCrossAxisSizeBehaviors_fixedHeight@2x.png │ │ ├── testCrossAxisSizeBehaviors_variableHeight@2x.png │ │ ├── testCrossAxisStretchingOccursAfterStackAxisFlexing@2x.png │ │ ├── testEmptyStack@2x.png │ │ ├── testFixedFlexBasisAppliedWhenFlexingItems_overflow@2x.png │ │ ├── testFixedFlexBasisAppliedWhenFlexingItems_underflow@2x.png │ │ ├── testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@2x.png │ │ ├── testFlexWithUnequalIntrinsicSizes_overflow@2x.png │ │ ├── testFlexWithUnequalIntrinsicSizes_underflow@2x.png │ │ ├── testFractionalFlexBasisResolvesAgainstParentSize@2x.png │ │ ├── testHorizontalAndVerticalAlignments_horizontalBottomRight@2x.png │ │ ├── testHorizontalAndVerticalAlignments_horizontalCenter@2x.png │ │ ├── testHorizontalAndVerticalAlignments_horizontalTopLeft@2x.png │ │ ├── testHorizontalAndVerticalAlignments_verticalBottomRight@2x.png │ │ ├── testHorizontalAndVerticalAlignments_verticalCenter@2x.png │ │ ├── testHorizontalAndVerticalAlignments_verticalTopLeft@2x.png │ │ ├── testJustifiedCenterWithChildSpacing_variableHeight@2x.png │ │ ├── testJustifiedSpaceAroundWithOneChild@2x.png │ │ ├── testJustifiedSpaceAroundWithRemainingSpace@2x.png │ │ ├── testJustifiedSpaceBetweenWithOneChild@2x.png │ │ ├── testJustifiedSpaceBetweenWithRemainingSpace@2x.png │ │ ├── testNegativeViolationAndFlexFactorIsNotRespected@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSize@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@2x.png │ │ ├── testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@2x.png │ │ ├── testNestedBaselineAlignments@2x.png │ │ ├── testNestedStackLayoutStretchDoesNotViolateWidth@2x.png │ │ ├── testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@2x.png │ │ ├── testOverflowBehaviors_flex@2x.png │ │ ├── testOverflowBehaviors_justifyCenter@2x.png │ │ ├── testOverflowBehaviors_justifyEnd@2x.png │ │ ├── testOverflowBehaviors_justifyStart@2x.png │ │ ├── testPositiveViolationIsDistributedEqually@2x.png │ │ ├── testPositiveViolationIsDistributedEquallyAmongMixedChildren@2x.png │ │ ├── testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@2x.png │ │ ├── testPositiveViolationIsDistributedEquallyWithArbitraryFloats@2x.png │ │ ├── testPositiveViolationIsDistributedProportionally@2x.png │ │ ├── testPositiveViolationIsDistributedProportionallyAmongMixedChildren@2x.png │ │ ├── testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@2x.png │ │ ├── testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@2x.png │ │ ├── testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@2x.png │ │ ├── testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@2x.png │ │ ├── testStackSpacingWithChildrenHavingNilObjects_variableHeight@2x.png │ │ ├── testStackSpacing_variableHeight@2x.png │ │ ├── testUnderflowBehaviors_flex@2x.png │ │ ├── testUnderflowBehaviors_justifyCenter@2x.png │ │ ├── testUnderflowBehaviors_justifyEnd@2x.png │ │ ├── testUnderflowBehaviors_justifySpaceAround@2x.png │ │ ├── testUnderflowBehaviors_justifySpaceBetween@2x.png │ │ └── testUnderflowBehaviors_justifyStart@2x.png │ ├── ASTextNodeSnapshotTests │ │ ├── testShadowing@2x.png │ │ ├── testTextContainerInset@2x.png │ │ ├── testTextContainerInsetHighlight@2x.png │ │ ├── testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png │ │ ├── testThatFastPathTruncationWorks@2x.png │ │ └── testThatSlowPathTruncationWorks@2x.png │ └── ASWrapperSpecSnapshotTests │ │ ├── testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@2x.png │ │ └── testWrapperSpecWithOneElementShouldSizeToElement@2x.png ├── ReferenceImages_iOS_10 │ ├── ASStackLayoutSpecSnapshotTests │ │ ├── testBaselineAlignmentWithSpaceBetween@2x.png │ │ ├── testBaselineAlignmentWithStretchedItem@2x.png │ │ ├── testBaselineAlignment_baselineFirst@2x.png │ │ ├── testBaselineAlignment_baselineLast@2x.png │ │ └── testNestedBaselineAlignments@2x.png │ └── ASTextNodeSnapshotTests │ │ ├── testShadowing@2x.png │ │ ├── testTextContainerInset@2x.png │ │ ├── testTextContainerInsetHighlight@2x.png │ │ ├── testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png │ │ ├── testThatFastPathTruncationWorks@2x.png │ │ └── testThatSlowPathTruncationWorks@2x.png ├── TestHost │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Info.plist │ └── main.m ├── TestResources │ ├── ASThrashTestRecordedCase │ ├── AttributedStringsFixture0.plist │ └── logo-square.png └── en.lproj │ └── InfoPlist.strings ├── buck-files ├── BUCK_FBSnapshotTestCase ├── BUCK_FLAnimatedImage ├── BUCK_JGMethodSwizzler ├── BUCK_OCMock ├── BUCK_PINCache └── BUCK_PINRemoteImage ├── build.sh ├── examples ├── ASCollectionView │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── ItemNode.h │ │ ├── ItemNode.m │ │ ├── Launchboard.storyboard │ │ ├── PresentingViewController.h │ │ ├── PresentingViewController.m │ │ ├── SupplementaryNode.h │ │ ├── SupplementaryNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── ASDKLayoutTransition │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── ASDKTube │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Controller │ │ ├── VideoFeedNodeController.h │ │ └── VideoFeedNodeController.m │ │ ├── Icons │ │ ├── ico-mute.png │ │ ├── ico-mute@2x.png │ │ ├── ico-mute@3x.png │ │ ├── ico-unmute.png │ │ ├── ico-unmute@2x.png │ │ └── ico-unmute@3x.png │ │ ├── Info.plist │ │ ├── Models │ │ ├── Utilities.h │ │ ├── Utilities.m │ │ ├── VideoModel.h │ │ └── VideoModel.m │ │ ├── Nodes │ │ ├── VideoContentCell.h │ │ └── VideoContentCell.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── WindowWithStatusBarUnderlay.h │ │ ├── WindowWithStatusBarUnderlay.m │ │ └── main.m ├── ASDKgram │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ ├── Sample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Sample │ │ ├── ASCollectionSectionController.h │ │ ├── ASCollectionSectionController.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Tab Bar Icons │ │ │ │ ├── Contents.json │ │ │ │ ├── camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── camera.png │ │ │ │ └── camera@2x.png │ │ │ │ ├── crosshairs.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── crosshair.png │ │ │ │ ├── earth.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── earth.png │ │ │ │ └── earth@2x.png │ │ │ │ ├── home.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── home.png │ │ │ │ └── home@2x.png │ │ │ │ └── profile.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── profile.png │ │ │ │ └── profile@2x.png │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── CommentFeedModel.h │ │ ├── CommentFeedModel.m │ │ ├── CommentModel.h │ │ ├── CommentModel.m │ │ ├── CommentView.h │ │ ├── CommentView.m │ │ ├── CommentsNode.h │ │ ├── CommentsNode.m │ │ ├── FeedHeaderNode.h │ │ ├── FeedHeaderNode.m │ │ ├── ImageURLModel.h │ │ ├── ImageURLModel.m │ │ ├── Info.plist │ │ ├── LocationModel.h │ │ ├── LocationModel.m │ │ ├── PhotoCellNode.h │ │ ├── PhotoCellNode.m │ │ ├── PhotoCollectionViewCell.h │ │ ├── PhotoCollectionViewCell.m │ │ ├── PhotoFeedBaseController.h │ │ ├── PhotoFeedBaseController.m │ │ ├── PhotoFeedControllerProtocol.h │ │ ├── PhotoFeedListKitViewController.h │ │ ├── PhotoFeedListKitViewController.m │ │ ├── PhotoFeedModel.h │ │ ├── PhotoFeedModel.m │ │ ├── PhotoFeedNodeController.h │ │ ├── PhotoFeedNodeController.m │ │ ├── PhotoFeedSectionController.h │ │ ├── PhotoFeedSectionController.m │ │ ├── PhotoFeedViewController.h │ │ ├── PhotoFeedViewController.m │ │ ├── PhotoModel.h │ │ ├── PhotoModel.m │ │ ├── PhotoTableViewCell.h │ │ ├── PhotoTableViewCell.m │ │ ├── RefreshingSectionControllerType.h │ │ ├── Sample.pch │ │ ├── TailLoadingNode.h │ │ ├── TailLoadingNode.m │ │ ├── UserModel.h │ │ ├── UserModel.m │ │ ├── Utilities.h │ │ ├── Utilities.m │ │ ├── WindowWithStatusBarUnderlay.h │ │ ├── WindowWithStatusBarUnderlay.m │ │ ├── main.m │ │ └── tabBarIcons │ │ │ ├── camera.png │ │ │ ├── camera@2x.png │ │ │ ├── cameraRaw.png │ │ │ ├── earth.png │ │ │ ├── earth@2x.png │ │ │ ├── home.png │ │ │ ├── home@2x.png │ │ │ ├── homeRaw.png │ │ │ ├── profile.png │ │ │ ├── profile@2x.png │ │ │ └── profileRaw.png │ └── tabBarIcons │ │ ├── camera.png │ │ ├── camera@2x.png │ │ ├── cameraRaw.png │ │ ├── earth.png │ │ ├── earth@2x.png │ │ ├── home.png │ │ ├── home@2x.png │ │ ├── homeRaw.png │ │ ├── profile.png │ │ ├── profile@2x.png │ │ └── profileRaw.png ├── ASMapNode │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Hill.imageset │ │ │ ├── Contents.json │ │ │ ├── hill.png │ │ │ ├── hill@2x.png │ │ │ └── hill@3x.png │ │ └── Water.imageset │ │ │ ├── Contents.json │ │ │ ├── water.png │ │ │ ├── water@2x.png │ │ │ └── water@3x.png │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── CustomMapAnnotation.h │ │ ├── CustomMapAnnotation.m │ │ ├── Info.plist │ │ ├── MapHandlerNode.h │ │ ├── MapHandlerNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── ASViewController │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── DetailCellNode.h │ │ ├── DetailCellNode.m │ │ ├── DetailRootNode.h │ │ ├── DetailRootNode.m │ │ ├── DetailViewController.h │ │ ├── DetailViewController.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── AnimatedGIF │ ├── ASAnimatedImage │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ └── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── xcschemes │ │ └── Sample.xcscheme ├── AsyncDisplayKitOverview │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── image.imageset │ │ │ ├── Contents.json │ │ │ └── image.jpg │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Node Containers │ │ ├── OverviewASCollectionNode.h │ │ ├── OverviewASCollectionNode.m │ │ ├── OverviewASPagerNode.h │ │ ├── OverviewASPagerNode.m │ │ ├── OverviewASTableNode.h │ │ └── OverviewASTableNode.m │ │ ├── OverviewComponentsViewController.h │ │ ├── OverviewComponentsViewController.m │ │ ├── OverviewDetailViewController.h │ │ ├── OverviewDetailViewController.m │ │ └── main.m ├── CatDealsCollectionView │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── BlurbNode.h │ │ ├── BlurbNode.m │ │ ├── Images.xcassets │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── cat_face.imageset │ │ │ ├── Contents.json │ │ │ └── cat_face.png │ │ ├── Info.plist │ │ ├── ItemNode.h │ │ ├── ItemNode.m │ │ ├── ItemStyles.h │ │ ├── ItemStyles.m │ │ ├── ItemViewModel.h │ │ ├── ItemViewModel.m │ │ ├── Launchboard.storyboard │ │ ├── LoadingNode.h │ │ ├── LoadingNode.m │ │ ├── PlaceholderNetworkImageNode.h │ │ ├── PlaceholderNetworkImageNode.m │ │ ├── PresentingViewController.h │ │ ├── PresentingViewController.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── CustomCollectionView-Swift │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── image_0.imageset │ │ │ ├── Contents.json │ │ │ └── image_0.jpg │ │ ├── image_1.imageset │ │ │ ├── Contents.json │ │ │ └── image_1.jpg │ │ ├── image_10.imageset │ │ │ ├── Contents.json │ │ │ └── image_10.jpg │ │ ├── image_11.imageset │ │ │ ├── Contents.json │ │ │ └── image_11.jpg │ │ ├── image_12.imageset │ │ │ ├── Contents.json │ │ │ └── image_12.jpg │ │ ├── image_13.imageset │ │ │ ├── Contents.json │ │ │ └── image_13.jpg │ │ ├── image_2.imageset │ │ │ ├── Contents.json │ │ │ └── image_2.jpg │ │ ├── image_3.imageset │ │ │ ├── Contents.json │ │ │ └── image_3.jpg │ │ ├── image_4.imageset │ │ │ ├── Contents.json │ │ │ └── image_4.jpg │ │ ├── image_5.imageset │ │ │ ├── Contents.json │ │ │ └── image_5.jpg │ │ ├── image_6.imageset │ │ │ ├── Contents.json │ │ │ └── image_6.jpg │ │ ├── image_7.imageset │ │ │ ├── Contents.json │ │ │ └── image_7.jpg │ │ ├── image_8.imageset │ │ │ ├── Contents.json │ │ │ └── image_8.jpg │ │ └── image_9.imageset │ │ │ ├── Contents.json │ │ │ └── image_9.jpg │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── ImageCellNode.swift │ │ ├── Info.plist │ │ ├── MosaicCollectionViewLayout.swift │ │ └── ViewController.swift ├── CustomCollectionView │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ImageCellNode.h │ │ ├── ImageCellNode.m │ │ ├── ImageCollectionViewCell.h │ │ ├── ImageCollectionViewCell.m │ │ ├── Images.xcassets │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── Default-568h@2x.png │ │ ├── image_0.imageset │ │ │ ├── Contents.json │ │ │ └── image_0.jpg │ │ ├── image_1.imageset │ │ │ ├── Contents.json │ │ │ └── image_1.jpg │ │ ├── image_10.imageset │ │ │ ├── Contents.json │ │ │ └── image_10.jpg │ │ ├── image_11.imageset │ │ │ ├── Contents.json │ │ │ └── image_11.jpg │ │ ├── image_12.imageset │ │ │ ├── Contents.json │ │ │ └── image_12.jpg │ │ ├── image_13.imageset │ │ │ ├── Contents.json │ │ │ └── image_13.jpg │ │ ├── image_2.imageset │ │ │ ├── Contents.json │ │ │ └── image_2.jpg │ │ ├── image_3.imageset │ │ │ ├── Contents.json │ │ │ └── image_3.jpg │ │ ├── image_4.imageset │ │ │ ├── Contents.json │ │ │ └── image_4.jpg │ │ ├── image_5.imageset │ │ │ ├── Contents.json │ │ │ └── image_5.jpg │ │ ├── image_6.imageset │ │ │ ├── Contents.json │ │ │ └── image_6.jpg │ │ ├── image_7.imageset │ │ │ ├── Contents.json │ │ │ └── image_7.jpg │ │ ├── image_8.imageset │ │ │ ├── Contents.json │ │ │ └── image_8.jpg │ │ └── image_9.imageset │ │ │ ├── Contents.json │ │ │ └── image_9.jpg │ │ ├── Info.plist │ │ ├── Launchboard.storyboard │ │ ├── MosaicCollectionViewLayout.h │ │ ├── MosaicCollectionViewLayout.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── HorizontalWithinVerticalScrolling │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── HorizontalScrollCellNode.h │ │ ├── HorizontalScrollCellNode.mm │ │ ├── Info.plist │ │ ├── RandomCoreGraphicsNode.h │ │ ├── RandomCoreGraphicsNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── Kittens │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── BlurbNode.h │ │ ├── BlurbNode.m │ │ ├── Info.plist │ │ ├── KittenNode.h │ │ ├── KittenNode.mm │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── LayoutSpecExamples-Swift │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── LayoutExampleNode+Layouts.swift │ │ ├── LayoutExampleNode.swift │ │ ├── LayoutExampleViewController.swift │ │ ├── OverviewCellNode.swift │ │ ├── OverviewViewController.swift │ │ └── Utilities.swift ├── LayoutSpecExamples │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── LayoutExampleNodes.h │ │ ├── LayoutExampleNodes.m │ │ ├── LayoutExampleViewController.h │ │ ├── LayoutExampleViewController.m │ │ ├── OverviewCellNode.h │ │ ├── OverviewCellNode.m │ │ ├── OverviewViewController.h │ │ ├── OverviewViewController.m │ │ ├── Utilities.h │ │ ├── Utilities.m │ │ └── main.m ├── PagerNode │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── PageNode.h │ │ ├── PageNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── README.md ├── SocialAppLayout-Inverted │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── CommentsNode.h │ │ ├── CommentsNode.m │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ ├── Default-736h@3x.png │ │ ├── Info.plist │ │ ├── LikesNode.h │ │ ├── LikesNode.m │ │ ├── Post.h │ │ ├── Post.m │ │ ├── PostNode.h │ │ ├── PostNode.m │ │ ├── TextStyles.h │ │ ├── TextStyles.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── icon_android.png │ │ ├── icon_android@2x.png │ │ ├── icon_android@3x.png │ │ ├── icon_comment.png │ │ ├── icon_comment@2x.png │ │ ├── icon_comment@3x.png │ │ ├── icon_ios.png │ │ ├── icon_ios@2x.png │ │ ├── icon_ios@3x.png │ │ ├── icon_like.png │ │ ├── icon_like@2x.png │ │ ├── icon_like@3x.png │ │ ├── icon_liked.png │ │ ├── icon_liked@2x.png │ │ ├── icon_liked@3x.png │ │ ├── icon_more.png │ │ ├── icon_more@2x.png │ │ ├── icon_more@3x.png │ │ └── main.m ├── SocialAppLayout │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── CommentsNode.h │ │ ├── CommentsNode.m │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ ├── Default-736h@3x.png │ │ ├── Info.plist │ │ ├── LikesNode.h │ │ ├── LikesNode.m │ │ ├── Post.h │ │ ├── Post.m │ │ ├── PostNode.h │ │ ├── PostNode.m │ │ ├── TextStyles.h │ │ ├── TextStyles.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── icon_android.png │ │ ├── icon_android@2x.png │ │ ├── icon_android@3x.png │ │ ├── icon_comment.png │ │ ├── icon_comment@2x.png │ │ ├── icon_comment@3x.png │ │ ├── icon_ios.png │ │ ├── icon_ios@2x.png │ │ ├── icon_ios@3x.png │ │ ├── icon_like.png │ │ ├── icon_like@2x.png │ │ ├── icon_like@3x.png │ │ ├── icon_liked.png │ │ ├── icon_liked@2x.png │ │ ├── icon_liked@3x.png │ │ ├── icon_more.png │ │ ├── icon_more@2x.png │ │ ├── icon_more@3x.png │ │ └── main.m ├── Swift │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.swift │ │ ├── Info.plist │ │ ├── TailLoadingCellNode.swift │ │ └── ViewController.swift ├── VerticalWithinHorizontalScrolling │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── GradientTableNode.h │ │ ├── GradientTableNode.mm │ │ ├── Info.plist │ │ ├── RandomCoreGraphicsNode.h │ │ ├── RandomCoreGraphicsNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── Videos │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Sample.xcscheme │ └── Sample │ ├── ASVideoNode.h │ ├── ASVideoNode.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── bearacrat@2x.jpg │ ├── main.m │ ├── playButton@2x.png │ ├── playButtonSelected@2x.png │ └── simon.mp4 ├── examples_extra ├── ASDKgram-Swift │ ├── ASDKgram-Swift.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ASDKgram-Swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Constants.swift │ │ ├── Date.swift │ │ ├── Info.plist │ │ ├── NetworkImageView.swift │ │ ├── PX500Convenience.swift │ │ ├── PhotoFeedModel.swift │ │ ├── PhotoFeedTableNodeController.swift │ │ ├── PhotoFeedTableViewController.swift │ │ ├── PhotoModel.swift │ │ ├── PhotoTableNodeCell.swift │ │ ├── PhotoTableViewCell.swift │ │ ├── PopularPageModel.swift │ │ ├── UIColor.swift │ │ ├── UIImage.swift │ │ ├── URL.swift │ │ └── Webservice.swift │ └── Podfile ├── ASLayoutSpecPlayground-Swift │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Sample │ │ ├── Info.plist │ │ ├── Sample.h │ │ └── Sample.playground │ │ ├── Pages │ │ ├── HorizontalStackWithSpacer.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Index.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── PhotoWithInsetTextOverlay.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── PhotoWithOutsetIconOverlay.xcplaygroundpage │ │ │ └── Contents.swift │ │ └── StackLayout.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Sources │ │ ├── ASPlayground.swift │ │ ├── HorizontalStackWithSpacer.swift │ │ ├── PhotoWithInsetTextOverlay.swift │ │ ├── PhotoWithOutsetIconOverlay.swift │ │ ├── StackLayout.swift │ │ └── Utilities.swift │ │ └── contents.xcplayground ├── ASTableViewStressTest │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── ASTraitCollection │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ ├── Sample.xcworkspace │ │ └── contents.xcworkspacedata │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CollectionViewController.h │ │ ├── CollectionViewController.m │ │ ├── Info.plist │ │ ├── KittenNode.h │ │ ├── KittenNode.m │ │ ├── Launch Screen.storyboard │ │ ├── OverrideViewController.h │ │ ├── OverrideViewController.m │ │ ├── TableViewController.h │ │ ├── TableViewController.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── BackgroundPropertySetting │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── DemoCellNode.swift │ │ ├── Info.plist │ │ ├── Utilities.swift │ │ └── ViewController.swift ├── CarthageBuildTest │ ├── Cartfile │ ├── CarthageExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── README.md │ └── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ └── xcschemes │ │ └── Sample.xcscheme ├── CollectionViewWithViewControllerCells │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ ├── Sample.xcworkspace │ │ └── contents.xcworkspacedata │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ImageViewController.h │ │ ├── ImageViewController.m │ │ ├── Images.xcassets │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── Default-568h@2x.png │ │ ├── image_0.imageset │ │ │ ├── Contents.json │ │ │ └── image_0.jpg │ │ ├── image_1.imageset │ │ │ ├── Contents.json │ │ │ └── image_1.jpg │ │ ├── image_10.imageset │ │ │ ├── Contents.json │ │ │ └── image_10.jpg │ │ ├── image_11.imageset │ │ │ ├── Contents.json │ │ │ └── image_11.jpg │ │ ├── image_12.imageset │ │ │ ├── Contents.json │ │ │ └── image_12.jpg │ │ ├── image_13.imageset │ │ │ ├── Contents.json │ │ │ └── image_13.jpg │ │ ├── image_2.imageset │ │ │ ├── Contents.json │ │ │ └── image_2.jpg │ │ ├── image_3.imageset │ │ │ ├── Contents.json │ │ │ └── image_3.jpg │ │ ├── image_4.imageset │ │ │ ├── Contents.json │ │ │ └── image_4.jpg │ │ ├── image_5.imageset │ │ │ ├── Contents.json │ │ │ └── image_5.jpg │ │ ├── image_6.imageset │ │ │ ├── Contents.json │ │ │ └── image_6.jpg │ │ ├── image_7.imageset │ │ │ ├── Contents.json │ │ │ └── image_7.jpg │ │ ├── image_8.imageset │ │ │ ├── Contents.json │ │ │ └── image_8.jpg │ │ └── image_9.imageset │ │ │ ├── Contents.json │ │ │ └── image_9.jpg │ │ ├── Info.plist │ │ ├── Launchboard.storyboard │ │ ├── MosaicCollectionViewLayout.h │ │ ├── MosaicCollectionViewLayout.m │ │ ├── SupplementaryNode.h │ │ ├── SupplementaryNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── EditableText │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── Multiplex │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ ├── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ScreenNode.h │ │ ├── ScreenNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── best.png │ ├── medium.png │ └── worst.png ├── Placeholders │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── PostNode.h │ │ ├── PostNode.m │ │ ├── SlowpokeImageNode.h │ │ ├── SlowpokeImageNode.m │ │ ├── SlowpokeShareNode.h │ │ ├── SlowpokeShareNode.m │ │ ├── SlowpokeTextNode.h │ │ ├── SlowpokeTextNode.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── logo.png │ │ └── main.m ├── RepoSearcher │ ├── Podfile │ ├── RepoSearcher.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── RepoSearcher.xcworkspace │ │ └── contents.xcworkspacedata │ └── RepoSearcher │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── IGListCollectionContext+ASDK.swift │ │ ├── Info.plist │ │ ├── LabelSectionController.swift │ │ ├── Launch Screen.storyboard │ │ ├── NSObject+IGListDiffable.swift │ │ ├── SearchNode.swift │ │ ├── SearchSectionController.swift │ │ └── SearchViewController.swift ├── Shop │ ├── Podfile │ ├── Screenshots │ │ ├── IMG_0008.jpg │ │ ├── IMG_0009.jpg │ │ ├── IMG_0010.jpg │ │ └── IMG_0011.jpg │ ├── Shop.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Shop.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Shop │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Shop │ │ │ │ ├── Contents.json │ │ │ │ ├── filled_star.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── filled_star-1.png │ │ │ │ ├── filled_star-2.png │ │ │ │ └── filled_star.png │ │ │ │ ├── placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── category_placeholder-1.png │ │ │ │ ├── category_placeholder-2.png │ │ │ │ └── category_placeholder.png │ │ │ │ └── unfilled_star.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── unfilled_star-1.png │ │ │ │ ├── unfilled_star-2.png │ │ │ │ └── unfilled_star.png │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Extensions │ │ │ └── UIColor.swift │ │ ├── Info.plist │ │ ├── Models │ │ │ ├── Category.swift │ │ │ ├── DummyGenerator.swift │ │ │ └── Product.swift │ │ ├── Scenes │ │ │ ├── Product │ │ │ │ ├── ProductCellNode.swift │ │ │ │ ├── ProductNode.swift │ │ │ │ ├── ProductViewController.swift │ │ │ │ └── StarRatingNode.swift │ │ │ ├── Products │ │ │ │ ├── ProductCollectionNode.swift │ │ │ │ ├── ProductTableNode.swift │ │ │ │ ├── ProductsCollectionViewController.swift │ │ │ │ ├── ProductsLayout.swift │ │ │ │ └── ProductsTableViewController.swift │ │ │ └── Shop │ │ │ │ ├── ShopCellNode.swift │ │ │ │ └── ShopViewController.swift │ │ └── Shop-Bridging-Header.h │ └── ShopTests │ │ ├── Info.plist │ │ └── ShopTests.swift ├── SynchronousConcurrency │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── AsyncTableViewController.h │ │ ├── AsyncTableViewController.m │ │ ├── AsyncViewController.h │ │ ├── AsyncViewController.m │ │ ├── Info.plist │ │ ├── RandomCoreGraphicsNode.h │ │ ├── RandomCoreGraphicsNode.m │ │ └── main.m ├── SynchronousKittens │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ ├── Sample.xcworkspace │ │ └── contents.xcworkspacedata │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── BlurbNode.h │ │ ├── BlurbNode.m │ │ ├── Info.plist │ │ ├── KittenNode.h │ │ ├── KittenNode.mm │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── TextStressTest │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sample.xcscheme │ └── Sample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── VideoTableView │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Podfile │ ├── Sample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Sample.xcscheme │ ├── Sample.xcworkspace │ └── contents.xcworkspacedata │ └── Sample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BlurbNode.h │ ├── BlurbNode.m │ ├── Info.plist │ ├── NicCageNode.h │ ├── NicCageNode.mm │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── smoke-tests ├── Framework ├── Default-568h@2x.png ├── Default-667h@2x.png ├── Default-736h@3x.png ├── README.md ├── Sample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Sample.xcscheme └── Sample │ ├── AppDelegate.swift │ ├── Info.plist │ └── ViewController.swift ├── Life Without CocoaPods ├── Life With Frameworks │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── main.m ├── Life Without CocoaPods.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Life Without CocoaPods.xcscheme ├── Life Without CocoaPods.xcworkspace │ └── contents.xcworkspacedata ├── Life Without CocoaPods │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── README.md └── README.md /.buckversion: -------------------------------------------------------------------------------- 1 | f399f484bf13b47bcc2bf0f2e092ab5d8de9f6e6 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | 10 | [**.{h,cc,mm,m}] 11 | indent_style = space 12 | indent_size = 2 13 | 14 | [*.{md,markdown}] 15 | trim_trailing_whitespace = false 16 | 17 | # Makefiles always use tabs for indentation 18 | [Makefile] 19 | indent_style = tab -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | // If you're looking for help, please consider joining our slack channel: 2 | // http://asyncdisplaykit.org/slack 3 | 4 | // The more information you include, the faster we can help you out! 5 | // Please include: a sample project or screenshots, code snippets 6 | // AsyncDisplayKit version, and/or backtraces for any crashes (> bt all). 7 | // Please delete these lines before posting. Thanks! -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | *.pbxuser 4 | *.perspective 5 | *.perspectivev3 6 | 7 | *.mode1v3 8 | *.mode2v3 9 | 10 | *.xcodeproj/xcuserdata/*.xcuserdatad 11 | 12 | *.xccheckout 13 | *.xcuserdatad 14 | 15 | Pods 16 | 17 | DerivedData 18 | build 19 | 20 | *.swp 21 | 22 | *.lock 23 | 24 | *.gcov 25 | *.gcno 26 | *.gcda 27 | 28 | ## Playgrounds 29 | timeline.xctimeline 30 | playground.xcworkspace 31 | 32 | # Buck 33 | /buck-out 34 | /.buckconfig.local 35 | /.buckd 36 | 37 | -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- 1 | ci_service: travis_ci 2 | coverage_service: coveralls 3 | xcodeproj: AsyncDisplayKit.xcodeproj 4 | source_directory: AsyncDisplayKit 5 | 6 | -------------------------------------------------------------------------------- /ASDKListKit/ASDKListKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ASDKListKit/ASDKListKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ASDKListKit/ASDKListKitTests/ASListTestCellNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // ASListTestCellNode.h 3 | // AsyncDisplayKit 4 | // 5 | // Created by Adlai Holler on 12/25/16. 6 | // Copyright © 2016 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ASListTestCellNode : ASCellNode 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ASDKListKit/ASDKListKitTests/ASListTestCellNode.m: -------------------------------------------------------------------------------- 1 | // 2 | // ASListTestCellNode.m 3 | // AsyncDisplayKit 4 | // 5 | // Created by Adlai Holler on 12/25/16. 6 | // Copyright © 2016 Facebook. All rights reserved. 7 | // 8 | 9 | #import "ASListTestCellNode.h" 10 | 11 | @implementation ASListTestCellNode 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ASDKListKit/ASDKListKitTests/ASListTestSupplementaryNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // ASListTestSupplementaryNode.h 3 | // AsyncDisplayKit 4 | // 5 | // Created by Adlai Holler on 12/25/16. 6 | // Copyright © 2016 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ASListTestSupplementaryNode : ASCellNode 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ASDKListKit/ASDKListKitTests/ASListTestSupplementaryNode.m: -------------------------------------------------------------------------------- 1 | // 2 | // ASListTestSupplementaryNode.m 3 | // AsyncDisplayKit 4 | // 5 | // Created by Adlai Holler on 12/25/16. 6 | // Copyright © 2016 Facebook. All rights reserved. 7 | // 8 | 9 | #import "ASListTestSupplementaryNode.h" 10 | 11 | @implementation ASListTestSupplementaryNode 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ASDKListKit/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | platform :ios, '8.0' 4 | target 'ASDKListKitTests' do 5 | pod 'AsyncDisplayKit/IGListKit', :path => '..' 6 | pod 'IGListKit', :git => 'https://github.com/Instagram/IGListKit', :commit => 'e9e09d7' 7 | pod 'JGMethodSwizzler', :git => 'https://github.com/JonasGessner/JGMethodSwizzler', :branch => 'master' 8 | end 9 | 10 | -------------------------------------------------------------------------------- /AsyncDisplayKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AsyncDisplayKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AsyncDisplayKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "pinterest/PINRemoteImage" "3.0.0-beta.6" 2 | github "pinterest/PINCache" "3.0.1-beta.2" 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'slather' -------------------------------------------------------------------------------- /Source/AsyncDisplayKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module AsyncDisplayKit { 2 | umbrella header "AsyncDisplayKit.h" 3 | 4 | export * 5 | module * { 6 | export * 7 | } 8 | 9 | explicit module ASControlNode_Subclasses { 10 | header "ASControlNode+Subclasses.h" 11 | export * 12 | } 13 | 14 | explicit module ASDisplayNode_Subclasses { 15 | header "ASDisplayNode+Subclasses.h" 16 | export * 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Source/Details/ASCollectionInternal.m: -------------------------------------------------------------------------------- 1 | // 2 | // ASCollectionInternal.m 3 | // AsyncDisplayKit 4 | // 5 | // Created by Scott Goodson on 1/1/16. 6 | // 7 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 8 | // This source code is licensed under the BSD-style license found in the 9 | // LICENSE file in the root directory of this source tree. An additional grant 10 | // of patent rights can be found in the PATENTS file in the same directory. 11 | // 12 | 13 | -------------------------------------------------------------------------------- /Source/Private/ASImageNode+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // ASImageNode+Private.h 3 | // AsyncDisplayKit 4 | // 5 | // Created by Michael Schneider on 3/20/17. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | #pragma once 10 | 11 | @interface ASImageNode (Private) 12 | 13 | - (void)_locked_setImage:(UIImage *)image; 14 | - (UIImage *)_locked_Image; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Tests/AsyncDisplayKitTests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testChildrenMeasuredWithAutoMaxSize@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_overflowChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_underflowChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASAbsoluteLayoutSpecSnapshotTests/testSizingBehaviour_wrappedChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASBackgroundLayoutSpecSnapshotTests/testBackground@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotCentering@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringX@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringXCenteringY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithOptions_CenteringY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumX@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumXSizingMinimumY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASCenterLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASDisplayNodeSnapshotTests/testBasicHierarchySnapshotTesting@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_first@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testForcedScaling_second@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRenderLogoSquare@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testRoundedCornerBlock@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASImageNodeSnapshotTests/testTintColorBlock@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-10-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_10-inf-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-10-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithFixedSize_inf-inf-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-0-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-0-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-0-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-0-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-inf-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-inf-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-0-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-0-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-0-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-0-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-0-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-inf-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-inf-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_0-inf-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-0-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-0-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-0-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-0-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-inf-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-inf-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-0-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-0-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-0-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-0-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-0-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-inf-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-inf-0@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithInfinityAndZeroInsetValue_inf-inf-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-10-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_10-inf-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-10-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-10-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-10-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-10-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-10-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-inf-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-inf-10@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-inf-inf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASInsetLayoutSpecSnapshotTests/testInsetsWithVariableSize_inf-inf-inf-inf@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASOverlayLayoutSpecSnapshotTests/testOverlay@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_DoubleRatio@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_HalfRatio@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_SevenTimesRatio@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRatioLayoutSpecSnapshotTests/testRatioLayout_TenTimesRatioWithItemTooBig@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testMinimumSizeRangeIsGivenToChildWhenNotPositioning@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterX@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXCenterY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterXEndY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_CenterY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndX@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXCenterY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndXEndY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithOptions_EndY@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidth@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASRelativeLayoutSpecSnapshotTests/testWithSizingOptions_SizingMinimumWidthSizingMinimumHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithFlexedMainDimension@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignCenterWithIndefiniteCrossDimension@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentEnd@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceAround@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentSpaceBetween@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentOverflow_alignContentStart@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentStretchAndOtherAlignments@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentEnd@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceAround@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentSpaceBetween@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStart@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentUnderflow_alignContentStretch@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignContentWithUnconstrainedCrossSize@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedEnd@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStart@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchNoChildExceedsMin@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testAlignedStretchOneChildExceedsMin@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingAfter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBalancedOut@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildSpacing_spacingBefore@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testChildThatChangesCrossSizeWhenMainSizeIsFlexed@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_fixedHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisSizeBehaviors_variableHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testCrossAxisStretchingOccursAfterStackAxisFlexing@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testEmptyStack@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_overflow@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisAppliedWhenFlexingItems_underflow@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFixedFlexBasisOverridesIntrinsicSizeForNonFlexingChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_overflow@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFlexWithUnequalIntrinsicSizes_underflow@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testFractionalFlexBasisResolvesAgainstParentSize@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalBottomRight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_horizontalTopLeft@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalBottomRight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testHorizontalAndVerticalAlignments_verticalTopLeft@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedCenterWithChildSpacing_variableHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithOneChild@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceAroundWithRemainingSpace@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithOneChild@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testJustifiedSpaceBetweenWithRemainingSpace@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationAndFlexFactorIsNotRespected@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSize@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAmongMixedChildrenWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactor@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorAmongMixedChildrenArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZero@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorDoesNotShrinkToZeroWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeAndFlexFactorWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNegativeViolationIsDistributedBasedOnSizeWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testNestedStackLayoutStretchDoesNotViolateWidth@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviorsWhenAllFlexShrinkChildrenHaveBeenClampedToZeroButViolationStillExists@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_flex@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyEnd@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testOverflowBehaviors_justifyStart@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEqually@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyAmongMixedChildrenWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedEquallyWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionally@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildren@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyAmongMixedChildrenWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testPositiveViolationIsDistributedProportionallyWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChild@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testRemainingViolationIsAppliedProperlyToFirstFlexibleChildWithArbitraryFloats@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacingWithChildrenHavingNilObjects_variableHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testStackSpacing_variableHeight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_flex@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyCenter@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyEnd@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceAround@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifySpaceBetween@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASStackLayoutSpecSnapshotTests/testUnderflowBehaviors_justifyStart@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testShadowing@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInset@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithMultipleElementsShouldSizeToLargestElement@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_64/ASWrapperSpecSnapshotTests/testWrapperSpecWithOneElementShouldSizeToElement@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithSpaceBetween@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignmentWithStretchedItem@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineFirst@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testBaselineAlignment_baselineLast@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASStackLayoutSpecSnapshotTests/testNestedBaselineAlignments@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testShadowing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testShadowing@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testTextContainerInset@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testTextContainerInset@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testTextContainerInsetHighlight@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testTextContainerInsetIsIncludedWithSmallerConstrainedSize@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testThatFastPathTruncationWorks@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/ReferenceImages_iOS_10/ASTextNodeSnapshotTests/testThatSlowPathTruncationWorks@2x.png -------------------------------------------------------------------------------- /Tests/TestHost/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/TestHost/Default-568h@2x.png -------------------------------------------------------------------------------- /Tests/TestResources/AttributedStringsFixture0.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/TestResources/AttributedStringsFixture0.plist -------------------------------------------------------------------------------- /Tests/TestResources/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/Tests/TestResources/logo-square.png -------------------------------------------------------------------------------- /Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /buck-files/BUCK_JGMethodSwizzler: -------------------------------------------------------------------------------- 1 | apple_library( 2 | name = 'JGMethodSwizzler', 3 | exported_headers = ['JGMethodSwizzler' + '/JGMethodSwizzler.h'], 4 | srcs = ['JGMethodSwizzler' + '/JGMethodSwizzler.m'], 5 | frameworks = [ 6 | '$SDKROOT/System/Library/Frameworks/Foundation.framework', 7 | ], 8 | visibility = ['PUBLIC'], 9 | ) 10 | -------------------------------------------------------------------------------- /buck-files/BUCK_OCMock: -------------------------------------------------------------------------------- 1 | apple_library( 2 | name = 'OCMock', 3 | exported_headers = glob(['Source/OCMock' + '/*.h']), 4 | srcs = glob(['Source/OCMock' + '/*.m']), 5 | frameworks = [ 6 | '$SDKROOT/System/Library/Frameworks/Foundation.framework', 7 | ], 8 | visibility = ['PUBLIC'], 9 | ) 10 | -------------------------------------------------------------------------------- /examples/ASCollectionView/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples/ASCollectionView/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/ASCollectionView/Sample/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASCollectionView/Sample/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/ASDKLayoutTransition/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKLayoutTransition/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/ASDKLayoutTransition/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKLayoutTransition/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/ASDKLayoutTransition/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKLayoutTransition/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/ASDKLayoutTransition/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | pod 'AsyncDisplayKit/Yoga', :path => '../..' 6 | end 7 | -------------------------------------------------------------------------------- /examples/ASDKLayoutTransition/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/ASDKTube/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/ASDKTube/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/ASDKTube/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/ASDKTube/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/ASDKTube/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/ASDKTube/Sample/Icons/ico-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Sample/Icons/ico-mute.png -------------------------------------------------------------------------------- /examples/ASDKTube/Sample/Icons/ico-mute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Sample/Icons/ico-mute@2x.png -------------------------------------------------------------------------------- /examples/ASDKTube/Sample/Icons/ico-mute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Sample/Icons/ico-mute@3x.png -------------------------------------------------------------------------------- /examples/ASDKTube/Sample/Icons/ico-unmute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Sample/Icons/ico-unmute.png -------------------------------------------------------------------------------- /examples/ASDKTube/Sample/Icons/ico-unmute@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Sample/Icons/ico-unmute@2x.png -------------------------------------------------------------------------------- /examples/ASDKTube/Sample/Icons/ico-unmute@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKTube/Sample/Icons/ico-unmute@3x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit/IGListKit', :path => '../..' 5 | pod 'AsyncDisplayKit/PINRemoteImage', :path => '../..' 6 | end 7 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/camera.imageset/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/camera.imageset/camera.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/camera.imageset/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/camera.imageset/camera@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/crosshairs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "crosshair.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/crosshairs.imageset/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/crosshairs.imageset/crosshair.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/earth.imageset/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/earth.imageset/earth.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/earth.imageset/earth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/earth.imageset/earth@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/home.imageset/home.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/home.imageset/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/home.imageset/home@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/profile.imageset/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/profile.imageset/profile.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/profile.imageset/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/Assets.xcassets/Tab Bar Icons/profile.imageset/profile@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/FeedHeaderNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // FeedHeaderNode.h 3 | // Sample 4 | // 5 | // Created by Adlai Holler on 1/23/17. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FeedHeaderNode : ASCellNode 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/PhotoFeedControllerProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // PhotoFeedControllerProtocol.h 3 | // Sample 4 | // 5 | // Created by Michael Schneider on 2/12/17. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol PhotoFeedControllerProtocol 12 | - (void)resetAllData; 13 | @end 14 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/PhotoFeedListKitViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // PhotoFeedListKitViewController.h 3 | // Sample 4 | // 5 | // Created by Adlai Holler on 12/29/16. 6 | // Copyright © 2016 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "PhotoFeedControllerProtocol.h" 11 | 12 | @interface PhotoFeedListKitViewController : ASViewController 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/Sample.pch: -------------------------------------------------------------------------------- 1 | // 2 | // ASDKgram.pch 3 | // ASDKgram 4 | // 5 | // Created by Hannah Troisi on 2/26/16. 6 | // Copyright © 2016 Hannah Troisi. All rights reserved. 7 | // 8 | 9 | #ifndef Flickrgram_pch 10 | #define Flickrgram_pch 11 | 12 | #import 13 | #import 14 | 15 | #endif /* Flickrgram_pch */ 16 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/TailLoadingNode.h: -------------------------------------------------------------------------------- 1 | // 2 | // TailLoadingNode.h 3 | // Sample 4 | // 5 | // Created by Adlai Holler on 1/3/17. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /** 12 | * A node that shows a UIActivityIndicatorView, useful for putting at the end of a 13 | * list while the next page is loading. 14 | */ 15 | @interface TailLoadingNode : ASCellNode 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/camera.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/camera@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/cameraRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/cameraRaw.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/earth.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/earth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/earth@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/home.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/home@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/homeRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/homeRaw.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/profile.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/profile@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/Sample/tabBarIcons/profileRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/Sample/tabBarIcons/profileRaw.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/camera.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/camera@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/cameraRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/cameraRaw.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/earth.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/earth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/earth@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/home.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/home@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/homeRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/homeRaw.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/profile.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/profile@2x.png -------------------------------------------------------------------------------- /examples/ASDKgram/tabBarIcons/profileRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASDKgram/tabBarIcons/profileRaw.png -------------------------------------------------------------------------------- /examples/ASMapNode/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Hill.imageset/hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASMapNode/Sample/Assets.xcassets/Hill.imageset/hill.png -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Hill.imageset/hill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASMapNode/Sample/Assets.xcassets/Hill.imageset/hill@2x.png -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Hill.imageset/hill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASMapNode/Sample/Assets.xcassets/Hill.imageset/hill@3x.png -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Water.imageset/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASMapNode/Sample/Assets.xcassets/Water.imageset/water.png -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Water.imageset/water@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASMapNode/Sample/Assets.xcassets/Water.imageset/water@2x.png -------------------------------------------------------------------------------- /examples/ASMapNode/Sample/Assets.xcassets/Water.imageset/water@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/ASMapNode/Sample/Assets.xcassets/Water.imageset/water@3x.png -------------------------------------------------------------------------------- /examples/ASViewController/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples/AnimatedGIF/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples/AnimatedGIF/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/AsyncDisplayKitOverview/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '8.0' 3 | 4 | # Uncomment this line if you're using Swift 5 | # use_frameworks! 6 | 7 | target 'Sample' do 8 | pod 'AsyncDisplayKit', :path => '../..' 9 | end 10 | 11 | -------------------------------------------------------------------------------- /examples/AsyncDisplayKitOverview/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/AsyncDisplayKitOverview/Sample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples/AsyncDisplayKitOverview/Sample/Assets.xcassets/image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/AsyncDisplayKitOverview/Sample/Assets.xcassets/image.imageset/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/AsyncDisplayKitOverview/Sample/Assets.xcassets/image.imageset/image.jpg -------------------------------------------------------------------------------- /examples/CatDealsCollectionView/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/CatDealsCollectionView/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/CatDealsCollectionView/Sample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | 4 | ], 5 | "info" : { 6 | "version" : 1, 7 | "author" : "xcode" 8 | } 9 | } -------------------------------------------------------------------------------- /examples/CatDealsCollectionView/Sample/Images.xcassets/cat_face.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cat_face.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CatDealsCollectionView/Sample/Images.xcassets/cat_face.imageset/cat_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CatDealsCollectionView/Sample/Images.xcassets/cat_face.imageset/cat_face.png -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | 4 | use_frameworks! 5 | 6 | target 'Sample' do 7 | pod 'AsyncDisplayKit', :path => '../..' 8 | end -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_0.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_0.imageset/image_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_0.imageset/image_0.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_1.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_1.imageset/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_1.imageset/image_1.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_10.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_10.imageset/image_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_10.imageset/image_10.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_11.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_11.imageset/image_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_11.imageset/image_11.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_12.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_12.imageset/image_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_12.imageset/image_12.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_13.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_13.imageset/image_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_13.imageset/image_13.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_2.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_2.imageset/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_2.imageset/image_2.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_3.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_3.imageset/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_3.imageset/image_3.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image_4.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_4.imageset/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_4.imageset/image_4.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_5.imageset/image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_5.imageset/image_5.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_6.imageset/image_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_6.imageset/image_6.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_7.imageset/image_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_7.imageset/image_7.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_8.imageset/image_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_8.imageset/image_8.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_9.imageset/image_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView-Swift/Sample/Assets.xcassets/image_9.imageset/image_9.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/ImageCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ImageCollectionViewCell.h 3 | // Sample 4 | // 5 | // Created by Hannah Troisi on 1/28/17. 6 | // Copyright © 2017 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ImageCollectionViewCell : UICollectionViewCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_0.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_0.imageset/image_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_0.imageset/image_0.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_1.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_1.imageset/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_1.imageset/image_1.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_10.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_10.imageset/image_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_10.imageset/image_10.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_11.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_11.imageset/image_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_11.imageset/image_11.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_12.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_12.imageset/image_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_12.imageset/image_12.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_13.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_13.imageset/image_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_13.imageset/image_13.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_2.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_2.imageset/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_2.imageset/image_2.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_3.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_3.imageset/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_3.imageset/image_3.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_4.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_4.imageset/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_4.imageset/image_4.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_5.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_5.imageset/image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_5.imageset/image_5.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_6.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_6.imageset/image_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_6.imageset/image_6.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_7.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_7.imageset/image_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_7.imageset/image_7.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_8.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_8.imageset/image_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_8.imageset/image_8.jpg -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "image_9.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /examples/CustomCollectionView/Sample/Images.xcassets/image_9.imageset/image_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/CustomCollectionView/Sample/Images.xcassets/image_9.imageset/image_9.jpg -------------------------------------------------------------------------------- /examples/HorizontalWithinVerticalScrolling/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/HorizontalWithinVerticalScrolling/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/HorizontalWithinVerticalScrolling/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/HorizontalWithinVerticalScrolling/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/HorizontalWithinVerticalScrolling/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/HorizontalWithinVerticalScrolling/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/HorizontalWithinVerticalScrolling/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/HorizontalWithinVerticalScrolling/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/Kittens/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Kittens/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/Kittens/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Kittens/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/Kittens/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Kittens/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/Kittens/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/Kittens/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/LayoutSpecExamples-Swift/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | 4 | use_frameworks! 5 | 6 | target 'Sample' do 7 | pod 'AsyncDisplayKit', :path => '../..' 8 | end 9 | -------------------------------------------------------------------------------- /examples/LayoutSpecExamples-Swift/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/LayoutSpecExamples/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples/LayoutSpecExamples/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/PagerNode/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/PagerNode/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/PagerNode/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/PagerNode/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/PagerNode/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/PagerNode/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/PagerNode/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/PagerNode/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_android.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_android@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_android@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_android@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_android@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_comment.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_comment@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_comment@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_ios.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_ios@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_ios@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_ios@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_ios@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_like.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_like@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_like@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_liked.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_liked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_liked@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_liked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_liked@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_more.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_more@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout-Inverted/Sample/icon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout-Inverted/Sample/icon_more@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_android.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_android@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_android@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_android@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_android@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_comment.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_comment@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_comment@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_ios.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_ios@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_ios@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_ios@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_ios@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_like.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_like@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_like@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_like@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_liked.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_liked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_liked@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_liked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_liked@3x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_more.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_more@2x.png -------------------------------------------------------------------------------- /examples/SocialAppLayout/Sample/icon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/SocialAppLayout/Sample/icon_more@3x.png -------------------------------------------------------------------------------- /examples/Swift/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Swift/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/Swift/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Swift/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/Swift/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Swift/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/Swift/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | 4 | use_frameworks! 5 | 6 | target 'Sample' do 7 | pod 'AsyncDisplayKit', :path => '../..' 8 | end 9 | -------------------------------------------------------------------------------- /examples/Swift/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/VerticalWithinHorizontalScrolling/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/VerticalWithinHorizontalScrolling/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/VerticalWithinHorizontalScrolling/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/VerticalWithinHorizontalScrolling/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/VerticalWithinHorizontalScrolling/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/VerticalWithinHorizontalScrolling/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/VerticalWithinHorizontalScrolling/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/VerticalWithinHorizontalScrolling/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/Videos/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Default-568h@2x.png -------------------------------------------------------------------------------- /examples/Videos/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Default-667h@2x.png -------------------------------------------------------------------------------- /examples/Videos/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Default-736h@3x.png -------------------------------------------------------------------------------- /examples/Videos/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples/Videos/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/Videos/Sample/bearacrat@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Sample/bearacrat@2x.jpg -------------------------------------------------------------------------------- /examples/Videos/Sample/playButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Sample/playButton@2x.png -------------------------------------------------------------------------------- /examples/Videos/Sample/playButtonSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Sample/playButtonSelected@2x.png -------------------------------------------------------------------------------- /examples/Videos/Sample/simon.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples/Videos/Sample/simon.mp4 -------------------------------------------------------------------------------- /examples_extra/ASDKgram-Swift/ASDKgram-Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/ASDKgram-Swift/Podfile: -------------------------------------------------------------------------------- 1 | 2 | target 'ASDKgram-Swift' do 3 | 4 | use_frameworks! 5 | 6 | pod 'AsyncDisplayKit', '>= 2.0' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /examples_extra/ASLayoutSpecPlayground-Swift/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | use_frameworks! 4 | target 'Sample' do 5 | pod 'AsyncDisplayKit', :path => '../..' 6 | end 7 | -------------------------------------------------------------------------------- /examples_extra/ASLayoutSpecPlayground-Swift/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/ASTableViewStressTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/ASTableViewStressTest/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/ASTableViewStressTest/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/ASTableViewStressTest/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/ASTableViewStressTest/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/ASTableViewStressTest/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/ASTableViewStressTest/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/ASTableViewStressTest/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/ASTraitCollection/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/ASTraitCollection/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/ASTraitCollection/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples_extra/BackgroundPropertySetting/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | use_frameworks! 4 | target 'Sample' do 5 | pod 'AsyncDisplayKit', :path => '../..' 6 | end 7 | -------------------------------------------------------------------------------- /examples_extra/BackgroundPropertySetting/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/CarthageBuildTest/Cartfile: -------------------------------------------------------------------------------- 1 | github "facebook/AsyncDisplayKit" "master" 2 | -------------------------------------------------------------------------------- /examples_extra/CarthageBuildTest/README.md: -------------------------------------------------------------------------------- 1 | This project is supposed to test that the `AsyncDisplayKit.framework` built by Carthage from the master branch can be imported as a module without causing any warnings and errors. 2 | 3 | Steps to verify: 4 | 5 | - Run `carthage update --platform iOS` 6 | - Build `CarthageExample.xcodeproj` 7 | - Verify that there are 0 Errors and 0 Warnings 8 | -------------------------------------------------------------------------------- /examples_extra/CarthageBuildTest/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/CarthageBuildTest/Sample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_0.imageset/image_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_0.imageset/image_0.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_1.imageset/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_1.imageset/image_1.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_10.imageset/image_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_10.imageset/image_10.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_11.imageset/image_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_11.imageset/image_11.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_12.imageset/image_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_12.imageset/image_12.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_13.imageset/image_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_13.imageset/image_13.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_2.imageset/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_2.imageset/image_2.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_3.imageset/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_3.imageset/image_3.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_4.imageset/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_4.imageset/image_4.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_5.imageset/image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_5.imageset/image_5.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_6.imageset/image_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_6.imageset/image_6.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_7.imageset/image_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_7.imageset/image_7.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_8.imageset/image_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_8.imageset/image_8.jpg -------------------------------------------------------------------------------- /examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_9.imageset/image_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/CollectionViewWithViewControllerCells/Sample/Images.xcassets/image_9.imageset/image_9.jpg -------------------------------------------------------------------------------- /examples_extra/EditableText/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/EditableText/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/EditableText/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/EditableText/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/EditableText/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/EditableText/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/EditableText/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples_extra/EditableText/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/Multiplex/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Multiplex/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/Multiplex/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Multiplex/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/Multiplex/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Multiplex/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/Multiplex/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/Multiplex/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/Multiplex/best.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Multiplex/best.png -------------------------------------------------------------------------------- /examples_extra/Multiplex/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Multiplex/medium.png -------------------------------------------------------------------------------- /examples_extra/Multiplex/worst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Multiplex/worst.png -------------------------------------------------------------------------------- /examples_extra/Placeholders/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Placeholders/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/Placeholders/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Placeholders/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/Placeholders/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Placeholders/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/Placeholders/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/Placeholders/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/Placeholders/Sample/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Placeholders/Sample/logo.png -------------------------------------------------------------------------------- /examples_extra/RepoSearcher/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'RepoSearcher' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for RepoSearcher 9 | pod 'AsyncDisplayKit/IGListKit', :path => '../..' 10 | end 11 | -------------------------------------------------------------------------------- /examples_extra/RepoSearcher/RepoSearcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/RepoSearcher/RepoSearcher.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples_extra/Shop/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'Shop' do 5 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 6 | # use_frameworks! 7 | 8 | # Pods for Shop 9 | 10 | pod 'AsyncDisplayKit' 11 | 12 | target 'ShopTests' do 13 | inherit! :search_paths 14 | # Pods for testing 15 | end 16 | 17 | end 18 | -------------------------------------------------------------------------------- /examples_extra/Shop/Screenshots/IMG_0008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Screenshots/IMG_0008.jpg -------------------------------------------------------------------------------- /examples_extra/Shop/Screenshots/IMG_0009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Screenshots/IMG_0009.jpg -------------------------------------------------------------------------------- /examples_extra/Shop/Screenshots/IMG_0010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Screenshots/IMG_0010.jpg -------------------------------------------------------------------------------- /examples_extra/Shop/Screenshots/IMG_0011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Screenshots/IMG_0011.jpg -------------------------------------------------------------------------------- /examples_extra/Shop/Shop.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/Shop/Shop.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/filled_star.imageset/filled_star-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/filled_star.imageset/filled_star-1.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/filled_star.imageset/filled_star-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/filled_star.imageset/filled_star-2.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/filled_star.imageset/filled_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/filled_star.imageset/filled_star.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/placeholder.imageset/category_placeholder-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/placeholder.imageset/category_placeholder-1.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/placeholder.imageset/category_placeholder-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/placeholder.imageset/category_placeholder-2.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/placeholder.imageset/category_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/placeholder.imageset/category_placeholder.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/unfilled_star.imageset/unfilled_star-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/unfilled_star.imageset/unfilled_star-1.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/unfilled_star.imageset/unfilled_star-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/unfilled_star.imageset/unfilled_star-2.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Assets.xcassets/Shop/unfilled_star.imageset/unfilled_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/Shop/Shop/Assets.xcassets/Shop/unfilled_star.imageset/unfilled_star.png -------------------------------------------------------------------------------- /examples_extra/Shop/Shop/Shop-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import 6 | -------------------------------------------------------------------------------- /examples_extra/SynchronousConcurrency/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/SynchronousConcurrency/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/SynchronousConcurrency/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/SynchronousConcurrency/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/SynchronousConcurrency/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/SynchronousConcurrency/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/SynchronousConcurrency/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/SynchronousConcurrency/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/SynchronousKittens/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/SynchronousKittens/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/SynchronousKittens/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/SynchronousKittens/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/SynchronousKittens/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/SynchronousKittens/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/SynchronousKittens/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/SynchronousKittens/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/SynchronousKittens/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /examples_extra/TextStressTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/TextStressTest/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/TextStressTest/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/TextStressTest/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/TextStressTest/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/TextStressTest/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/TextStressTest/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | 7 | -------------------------------------------------------------------------------- /examples_extra/VideoTableView/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/VideoTableView/Default-568h@2x.png -------------------------------------------------------------------------------- /examples_extra/VideoTableView/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/VideoTableView/Default-667h@2x.png -------------------------------------------------------------------------------- /examples_extra/VideoTableView/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/examples_extra/VideoTableView/Default-736h@3x.png -------------------------------------------------------------------------------- /examples_extra/VideoTableView/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | target 'Sample' do 4 | pod 'AsyncDisplayKit', :path => '../..' 5 | end 6 | -------------------------------------------------------------------------------- /examples_extra/VideoTableView/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples_extra/VideoTableView/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /smoke-tests/Framework/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/smoke-tests/Framework/Default-568h@2x.png -------------------------------------------------------------------------------- /smoke-tests/Framework/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/smoke-tests/Framework/Default-667h@2x.png -------------------------------------------------------------------------------- /smoke-tests/Framework/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/smoke-tests/Framework/Default-736h@3x.png -------------------------------------------------------------------------------- /smoke-tests/Framework/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /smoke-tests/Life Without CocoaPods/Life With Frameworks/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Life With Frameworks 4 | // 5 | // Created by Kiel Gillard on 7/07/2016. 6 | // Copyright © 2016 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /smoke-tests/Life Without CocoaPods/Life Without CocoaPods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /smoke-tests/Life Without CocoaPods/Life Without CocoaPods.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /smoke-tests/Life Without CocoaPods/Life Without CocoaPods/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/smoke-tests/Life Without CocoaPods/Life Without CocoaPods/Default-568h@2x.png -------------------------------------------------------------------------------- /smoke-tests/Life Without CocoaPods/Life Without CocoaPods/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/smoke-tests/Life Without CocoaPods/Life Without CocoaPods/Default-667h@2x.png -------------------------------------------------------------------------------- /smoke-tests/Life Without CocoaPods/Life Without CocoaPods/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/AsyncDisplayKit/0ebec19d2165cafce1df070e50473f9a25c895d6/smoke-tests/Life Without CocoaPods/Life Without CocoaPods/Default-736h@3x.png -------------------------------------------------------------------------------- /smoke-tests/README.md: -------------------------------------------------------------------------------- 1 | # Integration tests 2 | 3 | See READMEs in subfolders. 4 | --------------------------------------------------------------------------------