├── .gitignore ├── LICENSE ├── Materials └── Images │ ├── Auction.png │ ├── Auction@2x.png │ ├── Auction@3x.png │ ├── IceCreamConeStrawberry.png │ ├── IceCreamConeStrawberry@2x.png │ ├── IceCreamConeStrawberry@3x.png │ ├── IceCreamCupStrawberry.png │ ├── IceCreamCupStrawberry@2x.png │ ├── IceCreamCupStrawberry@3x.png │ ├── IceCreamCupVanilla.png │ ├── IceCreamCupVanilla@2x.png │ ├── IceCreamCupVanilla@3x.png │ ├── IceCreamStickChocolate.png │ ├── IceCreamStickChocolate@2x.png │ ├── IceCreamStickChocolate@3x.png │ ├── IceCreamStickConeChocolate.png │ ├── IceCreamStickConeChocolate@2x.png │ ├── IceCreamStickConeChocolate@3x.png │ ├── IceCreamStickConeVanilla.png │ ├── IceCreamStickConeVanilla@2x.png │ ├── IceCreamStickConeVanilla@3x.png │ ├── IceCreamStickCupChocolate.png │ ├── IceCreamStickCupChocolate@2x.png │ ├── IceCreamStickCupChocolate@3x.png │ ├── IceCreamStickMixChocolate.png │ ├── IceCreamStickMixChocolate@2x.png │ ├── IceCreamStickMixChocolate@3x.png │ ├── IceCreamStickMixStrawberry.png │ ├── IceCreamStickMixStrawberry@2x.png │ ├── IceCreamStickMixStrawberry@3x.png │ ├── IceCreamStickMixVanilla.png │ ├── IceCreamStickMixVanilla@2x.png │ ├── IceCreamStickMixVanilla@3x.png │ ├── IceCreamStickStrawberry.png │ ├── IceCreamStickStrawberry@2x.png │ ├── IceCreamStickStrawberry@3x.png │ ├── IceCreamStickVanilla.png │ ├── IceCreamStickVanilla@2x.png │ ├── IceCreamStickVanilla@3x.png │ ├── Love.png │ ├── Love@2x.png │ ├── Love@3x.png │ ├── Marketplace.png │ ├── Marketplace@2x.png │ ├── Marketplace@3x.png │ ├── Shopping.png │ ├── Shopping@2x.png │ ├── Shopping@3x.png │ ├── gift.png │ ├── gift@2x.png │ └── gift@3x.png ├── Presentations └── AppDevKit (Workshop) - Kata training.pdf ├── README.md ├── Templates ├── ADKDashedLineView │ ├── ADKDashedLineView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKDashedLineView.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKDashedLineView │ │ ├── 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 │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKDashedLineView │ │ ├── Pods-ADKDashedLineView-acknowledgements.markdown │ │ ├── Pods-ADKDashedLineView-acknowledgements.plist │ │ ├── Pods-ADKDashedLineView-dummy.m │ │ ├── Pods-ADKDashedLineView-frameworks.sh │ │ ├── Pods-ADKDashedLineView-resources.sh │ │ ├── Pods-ADKDashedLineView.debug.xcconfig │ │ └── Pods-ADKDashedLineView.release.xcconfig ├── ADKGradientView │ ├── ADKGradientView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKGradientView.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKGradientView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Image-JBC.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image-JBC.png │ │ │ ├── Image-Master.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image-Master.png │ │ │ └── Image-VISA.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image-VISA.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKGradientView │ │ ├── Pods-ADKGradientView-acknowledgements.markdown │ │ ├── Pods-ADKGradientView-acknowledgements.plist │ │ ├── Pods-ADKGradientView-dummy.m │ │ ├── Pods-ADKGradientView-frameworks.sh │ │ ├── Pods-ADKGradientView-resources.sh │ │ ├── Pods-ADKGradientView.debug.xcconfig │ │ └── Pods-ADKGradientView.release.xcconfig ├── ADKModalMaskView │ ├── ADKModalMaskView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKModalMaskView.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKModalMaskView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Gift.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gift.png │ │ │ │ ├── gift@2x.png │ │ │ │ └── gift@3x.png │ │ │ └── Love.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Love.png │ │ │ │ ├── Love@2x.png │ │ │ │ └── Love@3x.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── ContextView.h │ │ ├── ContextView.m │ │ ├── ContextView.xib │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKModalMaskView │ │ ├── Pods-ADKModalMaskView-acknowledgements.markdown │ │ ├── Pods-ADKModalMaskView-acknowledgements.plist │ │ ├── Pods-ADKModalMaskView-dummy.m │ │ ├── Pods-ADKModalMaskView-frameworks.sh │ │ ├── Pods-ADKModalMaskView-resources.sh │ │ ├── Pods-ADKModalMaskView.debug.xcconfig │ │ └── Pods-ADKModalMaskView.release.xcconfig ├── ADKNibSizeCalculator │ ├── ADKNibSizeCalculator.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKNibSizeCalculator.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKNibSizeCalculator │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── IceCream0.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamConeStrawberry.png │ │ │ │ ├── IceCreamConeStrawberry@2x.png │ │ │ │ └── IceCreamConeStrawberry@3x.png │ │ │ ├── IceCream1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamCupStrawberry.png │ │ │ │ ├── IceCreamCupStrawberry@2x.png │ │ │ │ └── IceCreamCupStrawberry@3x.png │ │ │ ├── IceCream10.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickStrawberry.png │ │ │ │ ├── IceCreamStickStrawberry@2x.png │ │ │ │ └── IceCreamStickStrawberry@3x.png │ │ │ ├── IceCream11.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickVanilla.png │ │ │ │ ├── IceCreamStickVanilla@2x.png │ │ │ │ └── IceCreamStickVanilla@3x.png │ │ │ ├── IceCream2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamCupVanilla.png │ │ │ │ ├── IceCreamCupVanilla@2x.png │ │ │ │ └── IceCreamCupVanilla@3x.png │ │ │ ├── IceCream3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickChocolate.png │ │ │ │ ├── IceCreamStickChocolate@2x.png │ │ │ │ └── IceCreamStickChocolate@3x.png │ │ │ ├── IceCream4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickConeChocolate.png │ │ │ │ ├── IceCreamStickConeChocolate@2x.png │ │ │ │ └── IceCreamStickConeChocolate@3x.png │ │ │ ├── IceCream5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickConeVanilla.png │ │ │ │ ├── IceCreamStickConeVanilla@2x.png │ │ │ │ └── IceCreamStickConeVanilla@3x.png │ │ │ ├── IceCream6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickCupChocolate.png │ │ │ │ ├── IceCreamStickCupChocolate@2x.png │ │ │ │ └── IceCreamStickCupChocolate@3x.png │ │ │ ├── IceCream7.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickMixChocolate.png │ │ │ │ ├── IceCreamStickMixChocolate@2x.png │ │ │ │ └── IceCreamStickMixChocolate@3x.png │ │ │ ├── IceCream8.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickMixStrawberry.png │ │ │ │ ├── IceCreamStickMixStrawberry@2x.png │ │ │ │ └── IceCreamStickMixStrawberry@3x.png │ │ │ └── IceCream9.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickMixVanilla.png │ │ │ │ ├── IceCreamStickMixVanilla@2x.png │ │ │ │ └── IceCreamStickMixVanilla@3x.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SampleCollectionVIewCell.h │ │ ├── SampleCollectionVIewCell.m │ │ ├── SampleCollectionVIewCell.xib │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKNibSizeCalculator │ │ ├── Pods-ADKNibSizeCalculator-acknowledgements.markdown │ │ ├── Pods-ADKNibSizeCalculator-acknowledgements.plist │ │ ├── Pods-ADKNibSizeCalculator-dummy.m │ │ ├── Pods-ADKNibSizeCalculator-frameworks.sh │ │ ├── Pods-ADKNibSizeCalculator-resources.sh │ │ ├── Pods-ADKNibSizeCalculator.debug.xcconfig │ │ └── Pods-ADKNibSizeCalculator.release.xcconfig ├── UIColorADKHexPresentation │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIColorADKHexPresentation │ │ │ ├── Pods-UIColorADKHexPresentation-acknowledgements.markdown │ │ │ ├── Pods-UIColorADKHexPresentation-acknowledgements.plist │ │ │ ├── Pods-UIColorADKHexPresentation-dummy.m │ │ │ ├── Pods-UIColorADKHexPresentation-frameworks.sh │ │ │ ├── Pods-UIColorADKHexPresentation-resources.sh │ │ │ ├── Pods-UIColorADKHexPresentation.debug.xcconfig │ │ │ └── Pods-UIColorADKHexPresentation.release.xcconfig │ ├── UIColorADKHexPresentation.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIColorADKHexPresentation.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIColorADKHexPresentation │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Auction.imageset │ │ │ ├── Auction.png │ │ │ ├── Auction@2x.png │ │ │ ├── Auction@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Marketplace.imageset │ │ │ ├── Contents.json │ │ │ ├── Marketplace.png │ │ │ ├── Marketplace@2x.png │ │ │ └── Marketplace@3x.png │ │ └── Shopping.imageset │ │ │ ├── Contents.json │ │ │ ├── Shopping.png │ │ │ ├── Shopping@2x.png │ │ │ └── Shopping@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── UIImageADKImageFilter │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIImageADKImageFilter │ │ │ ├── Pods-UIImageADKImageFilter-acknowledgements.markdown │ │ │ ├── Pods-UIImageADKImageFilter-acknowledgements.plist │ │ │ ├── Pods-UIImageADKImageFilter-dummy.m │ │ │ ├── Pods-UIImageADKImageFilter-frameworks.sh │ │ │ ├── Pods-UIImageADKImageFilter-resources.sh │ │ │ ├── Pods-UIImageADKImageFilter.debug.xcconfig │ │ │ └── Pods-UIImageADKImageFilter.release.xcconfig │ ├── UIImageADKImageFilter.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIImageADKImageFilter.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIImageADKImageFilter │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Love.imageset │ │ │ ├── Contents.json │ │ │ ├── Love.png │ │ │ ├── Love@2x.png │ │ │ └── Love@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── UIScrollViewADKPullToRefreshView │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIScrollViewADKPullToRefreshView │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-acknowledgements.markdown │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-acknowledgements.plist │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-dummy.m │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-frameworks.sh │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-resources.sh │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView.debug.xcconfig │ │ │ └── Pods-UIScrollViewADKPullToRefreshView.release.xcconfig │ ├── UIScrollViewADKPullToRefreshView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIScrollViewADKPullToRefreshView.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIScrollViewADKPullToRefreshView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── IceCream0.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamConeStrawberry.png │ │ │ ├── IceCreamConeStrawberry@2x.png │ │ │ └── IceCreamConeStrawberry@3x.png │ │ ├── IceCream1.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamCupStrawberry.png │ │ │ ├── IceCreamCupStrawberry@2x.png │ │ │ └── IceCreamCupStrawberry@3x.png │ │ ├── IceCream10.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickStrawberry.png │ │ │ ├── IceCreamStickStrawberry@2x.png │ │ │ └── IceCreamStickStrawberry@3x.png │ │ ├── IceCream11.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickVanilla.png │ │ │ ├── IceCreamStickVanilla@2x.png │ │ │ └── IceCreamStickVanilla@3x.png │ │ ├── IceCream2.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamCupVanilla.png │ │ │ ├── IceCreamCupVanilla@2x.png │ │ │ └── IceCreamCupVanilla@3x.png │ │ ├── IceCream3.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickChocolate.png │ │ │ ├── IceCreamStickChocolate@2x.png │ │ │ └── IceCreamStickChocolate@3x.png │ │ ├── IceCream4.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickConeChocolate.png │ │ │ ├── IceCreamStickConeChocolate@2x.png │ │ │ └── IceCreamStickConeChocolate@3x.png │ │ ├── IceCream5.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickConeVanilla.png │ │ │ ├── IceCreamStickConeVanilla@2x.png │ │ │ └── IceCreamStickConeVanilla@3x.png │ │ ├── IceCream6.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickCupChocolate.png │ │ │ ├── IceCreamStickCupChocolate@2x.png │ │ │ └── IceCreamStickCupChocolate@3x.png │ │ ├── IceCream7.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickMixChocolate.png │ │ │ ├── IceCreamStickMixChocolate@2x.png │ │ │ └── IceCreamStickMixChocolate@3x.png │ │ ├── IceCream8.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickMixStrawberry.png │ │ │ ├── IceCreamStickMixStrawberry@2x.png │ │ │ └── IceCreamStickMixStrawberry@3x.png │ │ ├── IceCream9.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickMixVanilla.png │ │ │ ├── IceCreamStickMixVanilla@2x.png │ │ │ └── IceCreamStickMixVanilla@3x.png │ │ └── Lightsaber.imageset │ │ │ ├── Contents.json │ │ │ └── Lightsaber.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LSPullToRefreshView.h │ │ ├── LSPullToRefreshView.m │ │ ├── SampleCollectionVIewCell.h │ │ ├── SampleCollectionVIewCell.m │ │ ├── SampleCollectionVIewCell.xib │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── UIViewADKAnimationMacro │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIViewADKAnimationMacro │ │ │ ├── Pods-UIViewADKAnimationMacro-acknowledgements.markdown │ │ │ ├── Pods-UIViewADKAnimationMacro-acknowledgements.plist │ │ │ ├── Pods-UIViewADKAnimationMacro-dummy.m │ │ │ ├── Pods-UIViewADKAnimationMacro-frameworks.sh │ │ │ ├── Pods-UIViewADKAnimationMacro-resources.sh │ │ │ ├── Pods-UIViewADKAnimationMacro.debug.xcconfig │ │ │ └── Pods-UIViewADKAnimationMacro.release.xcconfig │ ├── UIViewADKAnimationMacro.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIViewADKAnimationMacro.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIViewADKAnimationMacro │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Love.imageset │ │ │ ├── Contents.json │ │ │ ├── Love.png │ │ │ ├── Love@2x.png │ │ │ └── Love@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── UIViewADKAutoLayoutSupport │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-UIViewADKAutoLayoutSupport │ │ ├── Pods-UIViewADKAutoLayoutSupport-acknowledgements.markdown │ │ ├── Pods-UIViewADKAutoLayoutSupport-acknowledgements.plist │ │ ├── Pods-UIViewADKAutoLayoutSupport-dummy.m │ │ ├── Pods-UIViewADKAutoLayoutSupport-frameworks.sh │ │ ├── Pods-UIViewADKAutoLayoutSupport-resources.sh │ │ ├── Pods-UIViewADKAutoLayoutSupport.debug.xcconfig │ │ └── Pods-UIViewADKAutoLayoutSupport.release.xcconfig │ ├── UIViewADKAutoLayoutSupport.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── UIViewADKAutoLayoutSupport.xcworkspace │ └── contents.xcworkspacedata │ └── UIViewADKAutoLayoutSupport │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Image-JBC.imageset │ │ ├── Contents.json │ │ └── Image-JBC.png │ ├── Image-Master.imageset │ │ ├── Contents.json │ │ └── Image-Master.png │ └── Image-VISA.imageset │ │ ├── Contents.json │ │ └── Image-VISA.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Tutorials ├── ADKDashedLineView │ ├── ADKDashedLineView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKDashedLineView.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKDashedLineView │ │ ├── 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 │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKDashedLineView │ │ ├── Pods-ADKDashedLineView-acknowledgements.markdown │ │ ├── Pods-ADKDashedLineView-acknowledgements.plist │ │ ├── Pods-ADKDashedLineView-dummy.m │ │ ├── Pods-ADKDashedLineView-frameworks.sh │ │ ├── Pods-ADKDashedLineView-resources.sh │ │ ├── Pods-ADKDashedLineView.debug.xcconfig │ │ └── Pods-ADKDashedLineView.release.xcconfig ├── ADKGradientView │ ├── ADKGradientView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKGradientView.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKGradientView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Image-JBC.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image-JBC.png │ │ │ ├── Image-Master.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image-Master.png │ │ │ └── Image-VISA.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Image-VISA.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKGradientView │ │ ├── Pods-ADKGradientView-acknowledgements.markdown │ │ ├── Pods-ADKGradientView-acknowledgements.plist │ │ ├── Pods-ADKGradientView-dummy.m │ │ ├── Pods-ADKGradientView-frameworks.sh │ │ ├── Pods-ADKGradientView-resources.sh │ │ ├── Pods-ADKGradientView.debug.xcconfig │ │ └── Pods-ADKGradientView.release.xcconfig ├── ADKModalMaskView │ ├── ADKModalMaskView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKModalMaskView.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKModalMaskView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Gift.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gift.png │ │ │ │ ├── gift@2x.png │ │ │ │ └── gift@3x.png │ │ │ └── Love.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Love.png │ │ │ │ ├── Love@2x.png │ │ │ │ └── Love@3x.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── ContextView.h │ │ ├── ContextView.m │ │ ├── ContextView.xib │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKModalMaskView │ │ ├── Pods-ADKModalMaskView-acknowledgements.markdown │ │ ├── Pods-ADKModalMaskView-acknowledgements.plist │ │ ├── Pods-ADKModalMaskView-dummy.m │ │ ├── Pods-ADKModalMaskView-frameworks.sh │ │ ├── Pods-ADKModalMaskView-resources.sh │ │ ├── Pods-ADKModalMaskView.debug.xcconfig │ │ └── Pods-ADKModalMaskView.release.xcconfig ├── ADKNibSizeCalculator │ ├── ADKNibSizeCalculator.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKNibSizeCalculator.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKNibSizeCalculator │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── IceCream0.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamConeStrawberry.png │ │ │ │ ├── IceCreamConeStrawberry@2x.png │ │ │ │ └── IceCreamConeStrawberry@3x.png │ │ │ ├── IceCream1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamCupStrawberry.png │ │ │ │ ├── IceCreamCupStrawberry@2x.png │ │ │ │ └── IceCreamCupStrawberry@3x.png │ │ │ ├── IceCream10.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickStrawberry.png │ │ │ │ ├── IceCreamStickStrawberry@2x.png │ │ │ │ └── IceCreamStickStrawberry@3x.png │ │ │ ├── IceCream11.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickVanilla.png │ │ │ │ ├── IceCreamStickVanilla@2x.png │ │ │ │ └── IceCreamStickVanilla@3x.png │ │ │ ├── IceCream2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamCupVanilla.png │ │ │ │ ├── IceCreamCupVanilla@2x.png │ │ │ │ └── IceCreamCupVanilla@3x.png │ │ │ ├── IceCream3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickChocolate.png │ │ │ │ ├── IceCreamStickChocolate@2x.png │ │ │ │ └── IceCreamStickChocolate@3x.png │ │ │ ├── IceCream4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickConeChocolate.png │ │ │ │ ├── IceCreamStickConeChocolate@2x.png │ │ │ │ └── IceCreamStickConeChocolate@3x.png │ │ │ ├── IceCream5.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickConeVanilla.png │ │ │ │ ├── IceCreamStickConeVanilla@2x.png │ │ │ │ └── IceCreamStickConeVanilla@3x.png │ │ │ ├── IceCream6.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickCupChocolate.png │ │ │ │ ├── IceCreamStickCupChocolate@2x.png │ │ │ │ └── IceCreamStickCupChocolate@3x.png │ │ │ ├── IceCream7.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickMixChocolate.png │ │ │ │ ├── IceCreamStickMixChocolate@2x.png │ │ │ │ └── IceCreamStickMixChocolate@3x.png │ │ │ ├── IceCream8.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickMixStrawberry.png │ │ │ │ ├── IceCreamStickMixStrawberry@2x.png │ │ │ │ └── IceCreamStickMixStrawberry@3x.png │ │ │ └── IceCream9.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── IceCreamStickMixVanilla.png │ │ │ │ ├── IceCreamStickMixVanilla@2x.png │ │ │ │ └── IceCreamStickMixVanilla@3x.png │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SampleCollectionVIewCell.h │ │ ├── SampleCollectionVIewCell.m │ │ ├── SampleCollectionVIewCell.xib │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKNibSizeCalculator │ │ ├── Pods-ADKNibSizeCalculator-acknowledgements.markdown │ │ ├── Pods-ADKNibSizeCalculator-acknowledgements.plist │ │ ├── Pods-ADKNibSizeCalculator-dummy.m │ │ ├── Pods-ADKNibSizeCalculator-frameworks.sh │ │ ├── Pods-ADKNibSizeCalculator-resources.sh │ │ ├── Pods-ADKNibSizeCalculator.debug.xcconfig │ │ └── Pods-ADKNibSizeCalculator.release.xcconfig ├── ADKonSwift │ ├── ADKonSwift.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ADKonSwift.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ADKonSwift │ │ ├── ADKonSwift-Bridging-Header.h │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── ADKonSwiftTests │ │ ├── ADKonSwiftTests.swift │ │ └── Info.plist │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-ADKonSwift │ │ ├── Pods-ADKonSwift-acknowledgements.markdown │ │ ├── Pods-ADKonSwift-acknowledgements.plist │ │ ├── Pods-ADKonSwift-dummy.m │ │ ├── Pods-ADKonSwift-frameworks.sh │ │ ├── Pods-ADKonSwift-resources.sh │ │ ├── Pods-ADKonSwift.debug.xcconfig │ │ └── Pods-ADKonSwift.release.xcconfig ├── UIColorADKHexPresentation │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIColorADKHexPresentation │ │ │ ├── Pods-UIColorADKHexPresentation-acknowledgements.markdown │ │ │ ├── Pods-UIColorADKHexPresentation-acknowledgements.plist │ │ │ ├── Pods-UIColorADKHexPresentation-dummy.m │ │ │ ├── Pods-UIColorADKHexPresentation-frameworks.sh │ │ │ ├── Pods-UIColorADKHexPresentation-resources.sh │ │ │ ├── Pods-UIColorADKHexPresentation.debug.xcconfig │ │ │ └── Pods-UIColorADKHexPresentation.release.xcconfig │ ├── UIColorADKHexPresentation.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIColorADKHexPresentation.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIColorADKHexPresentation │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Auction.imageset │ │ │ ├── Auction.png │ │ │ ├── Auction@2x.png │ │ │ ├── Auction@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Marketplace.imageset │ │ │ ├── Contents.json │ │ │ ├── Marketplace.png │ │ │ ├── Marketplace@2x.png │ │ │ └── Marketplace@3x.png │ │ └── Shopping.imageset │ │ │ ├── Contents.json │ │ │ ├── Shopping.png │ │ │ ├── Shopping@2x.png │ │ │ └── Shopping@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── UIImageADKImageFilter │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIImageADKImageFilter │ │ │ ├── Pods-UIImageADKImageFilter-acknowledgements.markdown │ │ │ ├── Pods-UIImageADKImageFilter-acknowledgements.plist │ │ │ ├── Pods-UIImageADKImageFilter-dummy.m │ │ │ ├── Pods-UIImageADKImageFilter-frameworks.sh │ │ │ ├── Pods-UIImageADKImageFilter-resources.sh │ │ │ ├── Pods-UIImageADKImageFilter.debug.xcconfig │ │ │ └── Pods-UIImageADKImageFilter.release.xcconfig │ ├── UIImageADKImageFilter.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIImageADKImageFilter.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIImageADKImageFilter │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Love.imageset │ │ │ ├── Contents.json │ │ │ ├── Love.png │ │ │ ├── Love@2x.png │ │ │ └── Love@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── UIScrollViewADKPullToRefreshView │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIScrollViewADKPullToRefreshView │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-acknowledgements.markdown │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-acknowledgements.plist │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-dummy.m │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-frameworks.sh │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView-resources.sh │ │ │ ├── Pods-UIScrollViewADKPullToRefreshView.debug.xcconfig │ │ │ └── Pods-UIScrollViewADKPullToRefreshView.release.xcconfig │ ├── UIScrollViewADKPullToRefreshView.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIScrollViewADKPullToRefreshView.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIScrollViewADKPullToRefreshView │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── IceCream0.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamConeStrawberry.png │ │ │ ├── IceCreamConeStrawberry@2x.png │ │ │ └── IceCreamConeStrawberry@3x.png │ │ ├── IceCream1.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamCupStrawberry.png │ │ │ ├── IceCreamCupStrawberry@2x.png │ │ │ └── IceCreamCupStrawberry@3x.png │ │ ├── IceCream10.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickStrawberry.png │ │ │ ├── IceCreamStickStrawberry@2x.png │ │ │ └── IceCreamStickStrawberry@3x.png │ │ ├── IceCream11.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickVanilla.png │ │ │ ├── IceCreamStickVanilla@2x.png │ │ │ └── IceCreamStickVanilla@3x.png │ │ ├── IceCream2.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamCupVanilla.png │ │ │ ├── IceCreamCupVanilla@2x.png │ │ │ └── IceCreamCupVanilla@3x.png │ │ ├── IceCream3.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickChocolate.png │ │ │ ├── IceCreamStickChocolate@2x.png │ │ │ └── IceCreamStickChocolate@3x.png │ │ ├── IceCream4.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickConeChocolate.png │ │ │ ├── IceCreamStickConeChocolate@2x.png │ │ │ └── IceCreamStickConeChocolate@3x.png │ │ ├── IceCream5.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickConeVanilla.png │ │ │ ├── IceCreamStickConeVanilla@2x.png │ │ │ └── IceCreamStickConeVanilla@3x.png │ │ ├── IceCream6.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickCupChocolate.png │ │ │ ├── IceCreamStickCupChocolate@2x.png │ │ │ └── IceCreamStickCupChocolate@3x.png │ │ ├── IceCream7.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickMixChocolate.png │ │ │ ├── IceCreamStickMixChocolate@2x.png │ │ │ └── IceCreamStickMixChocolate@3x.png │ │ ├── IceCream8.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickMixStrawberry.png │ │ │ ├── IceCreamStickMixStrawberry@2x.png │ │ │ └── IceCreamStickMixStrawberry@3x.png │ │ ├── IceCream9.imageset │ │ │ ├── Contents.json │ │ │ ├── IceCreamStickMixVanilla.png │ │ │ ├── IceCreamStickMixVanilla@2x.png │ │ │ └── IceCreamStickMixVanilla@3x.png │ │ └── Lightsaber.imageset │ │ │ ├── Contents.json │ │ │ └── Lightsaber.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LSPullToRefreshView.h │ │ ├── LSPullToRefreshView.m │ │ ├── SampleCollectionVIewCell.h │ │ ├── SampleCollectionVIewCell.m │ │ ├── SampleCollectionVIewCell.xib │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── UIViewADKAnimationMacro │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── AppDevKit │ │ │ ├── AppDevPods │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevAnimateKit │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevCommonKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAppUtil.m │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKStringHelper.m │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevImageKit │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevListViewKit │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ │ ├── AppDevUIKit.h │ │ │ │ └── AppDevUIKit │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKGradientView.m │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ │ └── ValueObjects │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ │ ├── LICENSE.md │ │ │ └── README.md │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── AppDevKit │ │ │ │ │ ├── ADKAppUtil.h │ │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ │ ├── ADKGradientView.h │ │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ │ ├── ADKStringHelper.h │ │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ │ ├── AppDevImageKit.h │ │ │ │ │ ├── AppDevKit.h │ │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ │ ├── AppDevUIKit.h │ │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ │ └── Public │ │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ └── Target Support Files │ │ │ ├── AppDevKit │ │ │ ├── AppDevKit-dummy.m │ │ │ ├── AppDevKit-prefix.pch │ │ │ └── AppDevKit.xcconfig │ │ │ └── Pods-UIViewADKAnimationMacro │ │ │ ├── Pods-UIViewADKAnimationMacro-acknowledgements.markdown │ │ │ ├── Pods-UIViewADKAnimationMacro-acknowledgements.plist │ │ │ ├── Pods-UIViewADKAnimationMacro-dummy.m │ │ │ ├── Pods-UIViewADKAnimationMacro-frameworks.sh │ │ │ ├── Pods-UIViewADKAnimationMacro-resources.sh │ │ │ ├── Pods-UIViewADKAnimationMacro.debug.xcconfig │ │ │ └── Pods-UIViewADKAnimationMacro.release.xcconfig │ ├── UIViewADKAnimationMacro.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── UIViewADKAnimationMacro.xcworkspace │ │ └── contents.xcworkspacedata │ └── UIViewADKAnimationMacro │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Love.imageset │ │ │ ├── Contents.json │ │ │ ├── Love.png │ │ │ ├── Love@2x.png │ │ │ └── Love@3x.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── UIViewADKAutoLayoutSupport │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── AppDevKit │ │ ├── AppDevPods │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevAnimateKit │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ └── UIView+ADKAnimationMacro.m │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevCommonKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAppUtil.m │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCalculatorHelper.m │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibCacheManager.m │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKStringHelper.m │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── ADKViewExclusiveTouch.m │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIColor+ADKHexPresentation.m │ │ │ │ ├── UIView+ADKGetUIViewController.h │ │ │ │ └── UIView+ADKGetUIViewController.m │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevImageKit │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKColorReplacement.m │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.m │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ └── UIImage+ADKImageFilter.m │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevListViewKit │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.m │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.m │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKNibSizeCalculator.m │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.m │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ └── UICollectionView+ADKOperation.m │ │ │ ├── AppDevUIKit.h │ │ │ └── AppDevUIKit │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKDashedLineView.m │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKGradientView.m │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKModalMaskView.m │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.m │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.m │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.m │ │ │ │ └── ValueObjects │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ └── ADKAutoLayoutValueObject.m │ │ ├── LICENSE.md │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ └── AppDevKit │ │ │ │ ├── ADKAppUtil.h │ │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ │ ├── ADKCalculatorHelper.h │ │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ │ ├── ADKDashedLineView.h │ │ │ │ ├── ADKGradientView.h │ │ │ │ ├── ADKModalMaskView.h │ │ │ │ ├── ADKNibCacheManager.h │ │ │ │ ├── ADKNibSizeCalculator.h │ │ │ │ ├── ADKStringHelper.h │ │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ │ ├── AppDevAnimateKit.h │ │ │ │ ├── AppDevCommonKit.h │ │ │ │ ├── AppDevImageKit.h │ │ │ │ ├── AppDevKit.h │ │ │ │ ├── AppDevListViewKit.h │ │ │ │ ├── AppDevUIKit.h │ │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ │ └── UIView+ADKGetUIViewController.h │ │ └── Public │ │ │ └── AppDevKit │ │ │ ├── ADKAppUtil.h │ │ │ ├── ADKAutoLayoutValueObject.h │ │ │ ├── ADKCalculatorHelper.h │ │ │ ├── ADKCellDynamicSizeCalculator.h │ │ │ ├── ADKCollectionViewDynamicSizeCell.h │ │ │ ├── ADKDashedLineView.h │ │ │ ├── ADKGradientView.h │ │ │ ├── ADKModalMaskView.h │ │ │ ├── ADKNibCacheManager.h │ │ │ ├── ADKNibSizeCalculator.h │ │ │ ├── ADKStringHelper.h │ │ │ ├── ADKTableViewDynamicSizeCell.h │ │ │ ├── ADKViewExclusiveTouch.h │ │ │ ├── AppDevAnimateKit.h │ │ │ ├── AppDevCommonKit.h │ │ │ ├── AppDevImageKit.h │ │ │ ├── AppDevKit.h │ │ │ ├── AppDevListViewKit.h │ │ │ ├── AppDevUIKit.h │ │ │ ├── UICollectionView+ADKOperation.h │ │ │ ├── UIColor+ADKHexPresentation.h │ │ │ ├── UIImage+ADKColorReplacement.h │ │ │ ├── UIImage+ADKDrawingTemplate.h │ │ │ ├── UIImage+ADKImageFilter.h │ │ │ ├── UIScrollView+ADKInfiniteScrollingView.h │ │ │ ├── UIScrollView+ADKPullToRefreshView.h │ │ │ ├── UIView+ADKAnimationMacro.h │ │ │ ├── UIView+ADKAutoLayoutSupport.h │ │ │ └── UIView+ADKGetUIViewController.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── AppDevKit │ │ ├── AppDevKit-dummy.m │ │ ├── AppDevKit-prefix.pch │ │ └── AppDevKit.xcconfig │ │ └── Pods-UIViewADKAutoLayoutSupport │ │ ├── Pods-UIViewADKAutoLayoutSupport-acknowledgements.markdown │ │ ├── Pods-UIViewADKAutoLayoutSupport-acknowledgements.plist │ │ ├── Pods-UIViewADKAutoLayoutSupport-dummy.m │ │ ├── Pods-UIViewADKAutoLayoutSupport-frameworks.sh │ │ ├── Pods-UIViewADKAutoLayoutSupport-resources.sh │ │ ├── Pods-UIViewADKAutoLayoutSupport.debug.xcconfig │ │ └── Pods-UIViewADKAutoLayoutSupport.release.xcconfig │ ├── UIViewADKAutoLayoutSupport.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── UIViewADKAutoLayoutSupport.xcworkspace │ └── contents.xcworkspacedata │ └── UIViewADKAutoLayoutSupport │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Image-JBC.imageset │ │ ├── Contents.json │ │ └── Image-JBC.png │ ├── Image-Master.imageset │ │ ├── Contents.json │ │ └── Image-Master.png │ └── Image-VISA.imageset │ │ ├── Contents.json │ │ └── Image-VISA.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── img ├── ADKDashedLineView.jpg ├── ADKGradientView.jpg ├── ADKModalMaskView.gif ├── ADKNibSizeCalculator.gif ├── AppDevKit-Sticker.png ├── AppDevKitSticker.jpg ├── DocScreenShot.png ├── UIColorADKHexPresentation.gif ├── UIImageADKImageFilter.gif ├── UIScrollViewADKPullToRefreshView.gif ├── UIViewADKAnimationMacro.gif └── UIViewADKAutoLayoutSupport.gif /Materials/Images/Auction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Auction.png -------------------------------------------------------------------------------- /Materials/Images/Auction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Auction@2x.png -------------------------------------------------------------------------------- /Materials/Images/Auction@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Auction@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamConeStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamConeStrawberry.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamConeStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamConeStrawberry@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamConeStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamConeStrawberry@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamCupStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamCupStrawberry.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamCupStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamCupStrawberry@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamCupStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamCupStrawberry@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamCupVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamCupVanilla.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamCupVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamCupVanilla@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamCupVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamCupVanilla@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickChocolate.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickChocolate@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickChocolate@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickConeChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickConeChocolate.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickConeChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickConeChocolate@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickConeChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickConeChocolate@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickConeVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickConeVanilla.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickConeVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickConeVanilla@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickConeVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickConeVanilla@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickCupChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickCupChocolate.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickCupChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickCupChocolate@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickCupChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickCupChocolate@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixChocolate.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixChocolate@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixChocolate@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixStrawberry.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixStrawberry@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixStrawberry@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixVanilla.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixVanilla@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickMixVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickMixVanilla@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickStrawberry.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickStrawberry@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickStrawberry@3x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickVanilla.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickVanilla@2x.png -------------------------------------------------------------------------------- /Materials/Images/IceCreamStickVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/IceCreamStickVanilla@3x.png -------------------------------------------------------------------------------- /Materials/Images/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Love.png -------------------------------------------------------------------------------- /Materials/Images/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Love@2x.png -------------------------------------------------------------------------------- /Materials/Images/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Love@3x.png -------------------------------------------------------------------------------- /Materials/Images/Marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Marketplace.png -------------------------------------------------------------------------------- /Materials/Images/Marketplace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Marketplace@2x.png -------------------------------------------------------------------------------- /Materials/Images/Marketplace@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Marketplace@3x.png -------------------------------------------------------------------------------- /Materials/Images/Shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Shopping.png -------------------------------------------------------------------------------- /Materials/Images/Shopping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Shopping@2x.png -------------------------------------------------------------------------------- /Materials/Images/Shopping@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/Shopping@3x.png -------------------------------------------------------------------------------- /Materials/Images/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/gift.png -------------------------------------------------------------------------------- /Materials/Images/gift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/gift@2x.png -------------------------------------------------------------------------------- /Materials/Images/gift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Materials/Images/gift@3x.png -------------------------------------------------------------------------------- /Presentations/AppDevKit (Workshop) - Kata training.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Presentations/AppDevKit (Workshop) - Kata training.pdf -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/ADKDashedLineView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/ADKDashedLineView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/ADKDashedLineView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKDashedLineView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/ADKDashedLineView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKDashedLineView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/ADKDashedLineView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKDashedLineView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKDashedLineView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Headers/Private/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Headers/Public/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/ADKDashedLineView/Pods/Target Support Files/Pods-ADKDashedLineView/Pods-ADKDashedLineView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKDashedLineView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKDashedLineView 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-JBC.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Image-JBC.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 | } -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-JBC.imageset/Image-JBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-JBC.imageset/Image-JBC.png -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-Master.imageset/Image-Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-Master.imageset/Image-Master.png -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-VISA.imageset/Image-VISA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKGradientView/ADKGradientView/Assets.xcassets/Image-VISA.imageset/Image-VISA.png -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/ADKGradientView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKGradientView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Headers/Private/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Headers/Public/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/ADKGradientView/Pods/Target Support Files/Pods-ADKGradientView/Pods-ADKGradientView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKGradientView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKGradientView 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift.png -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@2x.png -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@3x.png -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love.png -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@2x.png -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/ContextView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ContextView.h 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/20/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ContextView : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/ADKModalMaskView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKModalMaskView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/ADKModalMaskView/Pods/Target Support Files/Pods-ADKModalMaskView/Pods-ADKModalMaskView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKModalMaskView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKModalMaskView 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKNibSizeCalculator 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKNibSizeCalculator 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/ADKNibSizeCalculator/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKNibSizeCalculator 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKNibSizeCalculator' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/ADKNibSizeCalculator/Pods/Target Support Files/Pods-ADKNibSizeCalculator/Pods-ADKNibSizeCalculator-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKNibSizeCalculator : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKNibSizeCalculator 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | source 'https://github.com/CocoaPods/Specs.git' 5 | 6 | target 'UIColorADKHexPresentation' do 7 | 8 | pod 'AppDevKit' 9 | 10 | end 11 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/Pods/Target Support Files/Pods-UIColorADKHexPresentation/Pods-UIColorADKHexPresentation-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIColorADKHexPresentation : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIColorADKHexPresentation 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIColorADKHexPresentation 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@2x.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@3x.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@2x.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@3x.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@2x.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@3x.png -------------------------------------------------------------------------------- /Templates/UIColorADKHexPresentation/UIColorADKHexPresentation/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIColorADKHexPresentation 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIImageADKImageFilter' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/Pods/Target Support Files/Pods-UIImageADKImageFilter/Pods-UIImageADKImageFilter-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIImageADKImageFilter : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIImageADKImageFilter 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIImageADKImageFilter 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love.png -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@2x.png -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIImageADKImageFilter 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/UIImageADKImageFilter/UIImageADKImageFilter/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIImageADKImageFilter 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIScrollViewADKPullToRefreshView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/Pods/Target Support Files/Pods-UIScrollViewADKPullToRefreshView/Pods-UIScrollViewADKPullToRefreshView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIScrollViewADKPullToRefreshView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIScrollViewADKPullToRefreshView 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIScrollViewADKPullToRefreshView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/Lightsaber.imageset/Lightsaber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/Lightsaber.imageset/Lightsaber.png -------------------------------------------------------------------------------- /Templates/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIScrollViewADKPullToRefreshView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIViewADKAnimationMacro' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/Pods/Target Support Files/Pods-UIViewADKAnimationMacro/Pods-UIViewADKAnimationMacro-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIViewADKAnimationMacro : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIViewADKAnimationMacro 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIViewADKAnimationMacro 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love.png -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@2x.png -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIViewADKAnimationMacro 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Templates/UIViewADKAnimationMacro/UIViewADKAnimationMacro/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIViewADKAnimationMacro 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIViewADKAutoLayoutSupport' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/Pods/Target Support Files/Pods-UIViewADKAutoLayoutSupport/Pods-UIViewADKAutoLayoutSupport-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIViewADKAutoLayoutSupport : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIViewADKAutoLayoutSupport 5 | @end 6 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIViewADKAutoLayoutSupport 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-JBC.imageset/Image-JBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-JBC.imageset/Image-JBC.png -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-Master.imageset/Image-Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-Master.imageset/Image-Master.png -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-VISA.imageset/Image-VISA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-VISA.imageset/Image-VISA.png -------------------------------------------------------------------------------- /Templates/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/ADKDashedLineView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/ADKDashedLineView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/ADKDashedLineView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKDashedLineView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/ADKDashedLineView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKDashedLineView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/ADKDashedLineView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKDashedLineView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKDashedLineView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/ADKDashedLineView/Pods/Target Support Files/Pods-ADKDashedLineView/Pods-ADKDashedLineView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKDashedLineView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKDashedLineView 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Image-JBC.imageset/Image-JBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Image-JBC.imageset/Image-JBC.png -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Image-Master.imageset/Image-Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Image-Master.imageset/Image-Master.png -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Image-VISA.imageset/Image-VISA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKGradientView/ADKGradientView/Assets.xcassets/Image-VISA.imageset/Image-VISA.png -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/ADKGradientView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKGradientView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/Headers/Public/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/ADKGradientView/Pods/Target Support Files/Pods-ADKGradientView/Pods-ADKGradientView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKGradientView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKGradientView 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift.png -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Gift.imageset/gift@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love.png -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKModalMaskView/ADKModalMaskView/Assets.xcassets/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/ContextView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ContextView.h 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/20/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ContextView : UIView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/ADKModalMaskView/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKModalMaskView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKModalMaskView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/ADKModalMaskView/Pods/Target Support Files/Pods-ADKModalMaskView/Pods-ADKModalMaskView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKModalMaskView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKModalMaskView 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ADKNibSizeCalculator 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKNibSizeCalculator 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/ADKNibSizeCalculator/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ADKNibSizeCalculator 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKNibSizeCalculator' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/ADKNibSizeCalculator/Pods/Target Support Files/Pods-ADKNibSizeCalculator/Pods-ADKNibSizeCalculator-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKNibSizeCalculator : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKNibSizeCalculator 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/ADKonSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/ADKonSwift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'ADKonSwift' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Headers/Private/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Headers/Public/AppDevKit/ADKTableViewDynamicSizeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ADKTableViewDynamicSizeCell.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 6/9/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | #import 12 | 13 | @interface ADKTableViewDynamicSizeCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/ADKonSwift/Pods/Target Support Files/Pods-ADKonSwift/Pods-ADKonSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ADKonSwift : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ADKonSwift 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | source 'https://github.com/CocoaPods/Specs.git' 5 | 6 | target 'UIColorADKHexPresentation' do 7 | 8 | pod 'AppDevKit' 9 | 10 | end 11 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/Pods/Target Support Files/Pods-UIColorADKHexPresentation/Pods-UIColorADKHexPresentation-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIColorADKHexPresentation : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIColorADKHexPresentation 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIColorADKHexPresentation 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@2x.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Auction.imageset/Auction@3x.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@2x.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Marketplace.imageset/Marketplace@3x.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@2x.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/Assets.xcassets/Shopping.imageset/Shopping@3x.png -------------------------------------------------------------------------------- /Tutorials/UIColorADKHexPresentation/UIColorADKHexPresentation/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIColorADKHexPresentation 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIImageADKImageFilter' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/Pods/Target Support Files/Pods-UIImageADKImageFilter/Pods-UIImageADKImageFilter-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIImageADKImageFilter : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIImageADKImageFilter 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIImageADKImageFilter 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love.png -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@2x.png -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/Assets.xcassets/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIImageADKImageFilter 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/UIImageADKImageFilter/UIImageADKImageFilter/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIImageADKImageFilter 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIScrollViewADKPullToRefreshView' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/Pods/Target Support Files/Pods-UIScrollViewADKPullToRefreshView/Pods-UIScrollViewADKPullToRefreshView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIScrollViewADKPullToRefreshView : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIScrollViewADKPullToRefreshView 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIScrollViewADKPullToRefreshView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream0.imageset/IceCreamConeStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream1.imageset/IceCreamCupStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream10.imageset/IceCreamStickStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream11.imageset/IceCreamStickVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream2.imageset/IceCreamCupVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream3.imageset/IceCreamStickChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream4.imageset/IceCreamStickConeChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream5.imageset/IceCreamStickConeVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream6.imageset/IceCreamStickCupChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream7.imageset/IceCreamStickMixChocolate@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream8.imageset/IceCreamStickMixStrawberry@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@2x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/IceCream9.imageset/IceCreamStickMixVanilla@3x.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/Lightsaber.imageset/Lightsaber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/Assets.xcassets/Lightsaber.imageset/Lightsaber.png -------------------------------------------------------------------------------- /Tutorials/UIScrollViewADKPullToRefreshView/UIScrollViewADKPullToRefreshView/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIScrollViewADKPullToRefreshView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIViewADKAnimationMacro' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/Pods/Target Support Files/Pods-UIViewADKAnimationMacro/Pods-UIViewADKAnimationMacro-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIViewADKAnimationMacro : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIViewADKAnimationMacro 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIViewADKAnimationMacro 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love.png -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@2x.png -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/Assets.xcassets/Love.imageset/Love@3x.png -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // UIViewADKAnimationMacro 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAnimationMacro/UIViewADKAnimationMacro/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // UIViewADKAnimationMacro 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. 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 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'UIViewADKAutoLayoutSupport' do 5 | 6 | pod 'AppDevKit' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Pods/AppDevKit/AppDevPods/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Pods/Headers/Private/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Pods/Headers/Public/AppDevKit/AppDevAnimateKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDevAnimateKit.h 3 | // AppDevKit 4 | // 5 | // Created by Chih Feng Sung on 12/3/15. 6 | // Copyright © 2015, Yahoo Inc. 7 | // Licensed under the terms of the BSD License. 8 | // Please see the LICENSE file in the project root for terms. 9 | // 10 | 11 | // Animation Tools 12 | #import "UIView+ADKAnimationMacro.h" 13 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Pods/Target Support Files/AppDevKit/AppDevKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AppDevKit : NSObject 3 | @end 4 | @implementation PodsDummy_AppDevKit 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Pods/Target Support Files/AppDevKit/AppDevKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/Pods/Target Support Files/Pods-UIViewADKAutoLayoutSupport/Pods-UIViewADKAutoLayoutSupport-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_UIViewADKAutoLayoutSupport : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_UIViewADKAutoLayoutSupport 5 | @end 6 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // UIViewADKAutoLayoutSupport 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-JBC.imageset/Image-JBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-JBC.imageset/Image-JBC.png -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-Master.imageset/Image-Master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-Master.imageset/Image-Master.png -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-VISA.imageset/Image-VISA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/Assets.xcassets/Image-VISA.imageset/Image-VISA.png -------------------------------------------------------------------------------- /Tutorials/UIViewADKAutoLayoutSupport/UIViewADKAutoLayoutSupport/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ADKGradientView 4 | // 5 | // Created by Chih Feng Sung on 6/16/16. 6 | // Copyright © 2016 Yahoo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /img/ADKDashedLineView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/ADKDashedLineView.jpg -------------------------------------------------------------------------------- /img/ADKGradientView.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/ADKGradientView.jpg -------------------------------------------------------------------------------- /img/ADKModalMaskView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/ADKModalMaskView.gif -------------------------------------------------------------------------------- /img/ADKNibSizeCalculator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/ADKNibSizeCalculator.gif -------------------------------------------------------------------------------- /img/AppDevKit-Sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/AppDevKit-Sticker.png -------------------------------------------------------------------------------- /img/AppDevKitSticker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/AppDevKitSticker.jpg -------------------------------------------------------------------------------- /img/DocScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/DocScreenShot.png -------------------------------------------------------------------------------- /img/UIColorADKHexPresentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/UIColorADKHexPresentation.gif -------------------------------------------------------------------------------- /img/UIImageADKImageFilter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/UIImageADKImageFilter.gif -------------------------------------------------------------------------------- /img/UIScrollViewADKPullToRefreshView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/UIScrollViewADKPullToRefreshView.gif -------------------------------------------------------------------------------- /img/UIViewADKAnimationMacro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/UIViewADKAnimationMacro.gif -------------------------------------------------------------------------------- /img/UIViewADKAutoLayoutSupport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anistarsung/AppDevKitLearning/a14db8e48c7abc8f9c64fd966f8341661cfa47f9/img/UIViewADKAutoLayoutSupport.gif --------------------------------------------------------------------------------