├── .gitignore ├── .travis.yml ├── Example ├── HDCollectionView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── HDCollectionView-Example.xcscheme ├── HDCollectionView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── HDCollectionView │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Demos │ │ ├── AutoHomeCarInfo │ │ │ ├── Model │ │ │ │ ├── AHCModel.h │ │ │ │ └── AHCModel.m │ │ │ ├── View │ │ │ │ ├── AHCBaseCollectionView.h │ │ │ │ ├── AHCBaseCollectionView.m │ │ │ │ ├── AHCHeader.h │ │ │ │ ├── AHCHeader.m │ │ │ │ ├── AHCNormalCell.h │ │ │ │ ├── AHCNormalCell.m │ │ │ │ ├── AHCRefPriceCell.h │ │ │ │ ├── AHCRefPriceCell.m │ │ │ │ ├── AHCTopHeader.h │ │ │ │ ├── AHCTopHeader.m │ │ │ │ ├── UIView+AroundLine.h │ │ │ │ └── UIView+AroundLine.m │ │ │ ├── ViewController │ │ │ │ ├── AutoHomeCarInfoVC.h │ │ │ │ ├── AutoHomeCarInfoVC.m │ │ │ │ ├── HDSCVOffsetBinder.h │ │ │ │ └── HDSCVOffsetBinder.m │ │ │ └── ViewModel │ │ │ │ ├── AHCVCViewModel.h │ │ │ │ ├── AHCVCViewModel.m │ │ │ │ └── carInfo.geojson │ │ ├── Demo1 │ │ │ ├── DemoVC1.h │ │ │ ├── DemoVC1.m │ │ │ ├── DemoVC1Cell.h │ │ │ ├── DemoVC1Cell.m │ │ │ ├── DemoVC1Footer.h │ │ │ ├── DemoVC1Footer.m │ │ │ ├── DemoVC1Header.h │ │ │ └── DemoVC1Header.m │ │ ├── Demo2 │ │ │ ├── DemoVC2.h │ │ │ ├── DemoVC2.m │ │ │ ├── DemoVC2Cell.h │ │ │ ├── DemoVC2Cell.m │ │ │ ├── DemoVC2Cell2.h │ │ │ ├── DemoVC2Cell2.m │ │ │ ├── DemoVC2Footer.h │ │ │ ├── DemoVC2Footer.m │ │ │ ├── DemoVC2Header.h │ │ │ └── DemoVC2Header.m │ │ ├── Demo3 │ │ │ ├── DemoVC3.h │ │ │ ├── DemoVC3.m │ │ │ ├── DemoVC3Cell.h │ │ │ ├── DemoVC3Cell.m │ │ │ ├── DemoVC3CellModel.h │ │ │ ├── DemoVC3CellModel.m │ │ │ ├── DemoVC3CellVM.h │ │ │ ├── DemoVC3CellVM.m │ │ │ ├── DemoVC3Footer.h │ │ │ ├── DemoVC3Footer.m │ │ │ ├── DemoVC3Header.h │ │ │ └── DemoVC3Header.m │ │ ├── Demo4 │ │ │ ├── DemoVC4.h │ │ │ ├── DemoVC4.m │ │ │ ├── DemoVC4Cell.h │ │ │ ├── DemoVC4Cell.m │ │ │ ├── DemoVC4Cell2.h │ │ │ ├── DemoVC4Cell2.m │ │ │ ├── DemoVC4DecorationView.h │ │ │ ├── DemoVC4DecorationView.m │ │ │ ├── DemoVC4Footer.h │ │ │ ├── DemoVC4Footer.m │ │ │ ├── DemoVC4Header.h │ │ │ ├── DemoVC4Header.m │ │ │ ├── DemoVC4ViewModel.h │ │ │ └── DemoVC4ViewModel.m │ │ ├── Demo5 │ │ │ ├── DemoVC5.h │ │ │ ├── DemoVC5.m │ │ │ ├── DemoVC5Cell.h │ │ │ ├── DemoVC5Cell.m │ │ │ ├── DemoVC5Cell2.h │ │ │ ├── DemoVC5Cell2.m │ │ │ ├── DemoVC5DecorationView.h │ │ │ ├── DemoVC5DecorationView.m │ │ │ ├── DemoVC5Footer.h │ │ │ ├── DemoVC5Footer.m │ │ │ ├── DemoVC5Header.h │ │ │ └── DemoVC5Header.m │ │ ├── Demo6 │ │ │ ├── DemoVC6.h │ │ │ ├── DemoVC6.m │ │ │ ├── DemoVC6Cell.h │ │ │ ├── DemoVC6Cell.m │ │ │ ├── DemoVC6DecorationView.h │ │ │ ├── DemoVC6DecorationView.m │ │ │ ├── DemoVC6Footer.h │ │ │ ├── DemoVC6Footer.m │ │ │ ├── DemoVC6Header.h │ │ │ └── DemoVC6Header.m │ │ ├── Demo7 │ │ │ ├── DemoVC7.h │ │ │ ├── DemoVC7.m │ │ │ ├── DemoVC7Cell.h │ │ │ ├── DemoVC7Cell.m │ │ │ ├── DemoVC7Footer.h │ │ │ ├── DemoVC7Footer.m │ │ │ ├── DemoVC7Header.h │ │ │ └── DemoVC7Header.m │ │ ├── HDDemoCellViewModel.h │ │ ├── HDDemoCellViewModel.m │ │ ├── NewsDetailDemo │ │ │ ├── HDNewsCollectionView.h │ │ │ ├── HDNewsCollectionView.m │ │ │ ├── HDStopView.h │ │ │ ├── HDStopView.m │ │ │ ├── HDWebView.h │ │ │ ├── HDWebView.m │ │ │ ├── NewsDetailDemoVC.h │ │ │ └── NewsDetailDemoVC.m │ │ └── QQDemo2 │ │ │ ├── Controller │ │ │ ├── QQDemo2FriendVC.h │ │ │ ├── QQDemo2FriendVC.m │ │ │ ├── QQDemo2VC.h │ │ │ └── QQDemo2VC.m │ │ │ ├── Model │ │ │ ├── QQDemoFriendModel.h │ │ │ └── QQDemoFriendModel.m │ │ │ ├── View │ │ │ ├── QQDemoCreateCell.h │ │ │ ├── QQDemoCreateCell.m │ │ │ ├── QQDemoFriendCell.h │ │ │ ├── QQDemoFriendCell.m │ │ │ ├── QQDemoFriendGroupHeader.h │ │ │ ├── QQDemoFriendGroupHeader.m │ │ │ ├── QQDemoGapCell.h │ │ │ ├── QQDemoGapCell.m │ │ │ ├── QQDemoSearchCell.h │ │ │ └── QQDemoSearchCell.m │ │ │ └── ViewModel │ │ │ ├── QQDemo2FriendVCVM.h │ │ │ ├── QQDemo2FriendVCVM.m │ │ │ ├── QQDemo2VCViewModel.h │ │ │ ├── QQDemo2VCViewModel.m │ │ │ ├── QQDemoFriendCellVM.h │ │ │ ├── QQDemoFriendCellVM.m │ │ │ ├── QQDemoOpenCloseSec.h │ │ │ ├── QQDemoOpenCloseSec.m │ │ │ ├── QQDemoVCViewModel.h │ │ │ └── QQDemoVCViewModel.m │ ├── HDAppDelegate.h │ ├── HDAppDelegate.m │ ├── HDCollectionView-Info.plist │ ├── HDCollectionView-Prefix.pch │ ├── Images.xcassets │ │ ├── AHCTopHederDelete.imageset │ │ │ ├── Contents.json │ │ │ └── 删除@2x.png │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Utility │ │ ├── CHD_ListView_Structure.h │ │ ├── CHD_ListView_Structure.m │ │ ├── HDMultipleScrollListView │ │ │ ├── HDCollectionView+MultipleScroll.h │ │ │ ├── HDCollectionView+MultipleScroll.m │ │ │ ├── HDMultipleScrollListMainVC.h │ │ │ ├── HDMultipleScrollListMainVC.m │ │ │ ├── HDMultipleScrollListSubVC.h │ │ │ ├── HDMultipleScrollListSubVC.m │ │ │ ├── HDMultipleScrollListView.h │ │ │ └── HDMultipleScrollListView.m │ │ ├── NSArray+HDHelper.h │ │ ├── NSArray+HDHelper.m │ │ ├── UIView+gesture.h │ │ ├── UIView+gesture.m │ │ ├── YYFPSLabel.h │ │ ├── YYFPSLabel.m │ │ ├── YYWeakProxy.h │ │ └── YYWeakProxy.m │ ├── VCCell.h │ ├── VCCell.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── HDCollectionView_Example.entitlements ├── Podfile ├── Podfile.lock ├── Pods │ ├── .project_cache │ │ ├── installation_cache.yaml │ │ ├── metadata_cache.yaml │ │ └── version │ ├── CollectionSwipableCellExtension.xcodeproj │ │ └── project.pbxproj │ ├── CollectionSwipableCellExtension │ │ ├── LICENSE │ │ ├── Library │ │ │ ├── CollectionSwipableCellExtension.swift │ │ │ ├── CollectionSwipableCellOneButtonLayout.swift │ │ │ ├── Private │ │ │ │ ├── CollectionSwipableCellHandler.swift │ │ │ │ ├── SwipableCellLayouter.swift │ │ │ │ ├── SwipableCollection.swift │ │ │ │ ├── SwipableUICollectionView.swift │ │ │ │ └── SwipableUITableView.swift │ │ │ ├── UICollectionViewCell+CollectionSwipableCellExtension.swift │ │ │ └── UITableViewCell+CollectionSwipableCellExtension.swift │ │ └── README.md │ ├── HDCollectionView.xcodeproj │ │ └── project.pbxproj │ ├── HDListViewDiffer.xcodeproj │ │ └── project.pbxproj │ ├── HDListViewDiffer │ │ ├── HDListViewDiffer │ │ │ └── Classes │ │ │ │ ├── HDListViewDiffer.h │ │ │ │ ├── HDListViewDiffer.m │ │ │ │ ├── UICollectionView+HDDiffReload.h │ │ │ │ ├── UICollectionView+HDDiffReload.m │ │ │ │ ├── UITableView+HDDiffReload.h │ │ │ │ └── UITableView+HDDiffReload.m │ │ ├── LICENSE │ │ └── README.md │ ├── JXCategoryView.xcodeproj │ │ └── project.pbxproj │ ├── JXCategoryView │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Base │ │ │ ├── JXCategoryBaseCell.h │ │ │ ├── JXCategoryBaseCell.m │ │ │ ├── JXCategoryBaseCellModel.h │ │ │ ├── JXCategoryBaseCellModel.m │ │ │ ├── JXCategoryBaseView.h │ │ │ └── JXCategoryBaseView.m │ │ │ ├── Common │ │ │ ├── JXCategoryCollectionView.h │ │ │ ├── JXCategoryCollectionView.m │ │ │ ├── JXCategoryFactory.h │ │ │ ├── JXCategoryFactory.m │ │ │ ├── JXCategoryIndicatorParamsModel.h │ │ │ ├── JXCategoryIndicatorParamsModel.m │ │ │ ├── JXCategoryIndicatorProtocol.h │ │ │ ├── JXCategoryListCollectionContainerView.h │ │ │ ├── JXCategoryListCollectionContainerView.m │ │ │ ├── JXCategoryListContainerView.h │ │ │ ├── JXCategoryListContainerView.m │ │ │ ├── JXCategoryViewAnimator.h │ │ │ ├── JXCategoryViewAnimator.m │ │ │ ├── JXCategoryViewDefines.h │ │ │ ├── UIColor+JXAdd.h │ │ │ └── UIColor+JXAdd.m │ │ │ ├── Dot │ │ │ ├── JXCategoryDotCell.h │ │ │ ├── JXCategoryDotCell.m │ │ │ ├── JXCategoryDotCellModel.h │ │ │ ├── JXCategoryDotCellModel.m │ │ │ ├── JXCategoryDotView.h │ │ │ └── JXCategoryDotView.m │ │ │ ├── Image │ │ │ ├── JXCategoryImageCell.h │ │ │ ├── JXCategoryImageCell.m │ │ │ ├── JXCategoryImageCellModel.h │ │ │ ├── JXCategoryImageCellModel.m │ │ │ ├── JXCategoryImageView.h │ │ │ └── JXCategoryImageView.m │ │ │ ├── Indicator │ │ │ ├── IndicatorViews │ │ │ │ ├── JXCategoryIndicatorBackgroundView.h │ │ │ │ ├── JXCategoryIndicatorBackgroundView.m │ │ │ │ ├── JXCategoryIndicatorBallView.h │ │ │ │ ├── JXCategoryIndicatorBallView.m │ │ │ │ ├── JXCategoryIndicatorComponentView.h │ │ │ │ ├── JXCategoryIndicatorComponentView.m │ │ │ │ ├── JXCategoryIndicatorDotLineView.h │ │ │ │ ├── JXCategoryIndicatorDotLineView.m │ │ │ │ ├── JXCategoryIndicatorImageView.h │ │ │ │ ├── JXCategoryIndicatorImageView.m │ │ │ │ ├── JXCategoryIndicatorLineView.h │ │ │ │ ├── JXCategoryIndicatorLineView.m │ │ │ │ ├── JXCategoryIndicatorRainbowLineView.h │ │ │ │ ├── JXCategoryIndicatorRainbowLineView.m │ │ │ │ ├── JXCategoryIndicatorTriangleView.h │ │ │ │ └── JXCategoryIndicatorTriangleView.m │ │ │ ├── JXCategoryIndicatorCell.h │ │ │ ├── JXCategoryIndicatorCell.m │ │ │ ├── JXCategoryIndicatorCellModel.h │ │ │ ├── JXCategoryIndicatorCellModel.m │ │ │ ├── JXCategoryIndicatorView.h │ │ │ └── JXCategoryIndicatorView.m │ │ │ ├── JXCategoryView.h │ │ │ ├── Number │ │ │ ├── JXCategoryNumberCell.h │ │ │ ├── JXCategoryNumberCell.m │ │ │ ├── JXCategoryNumberCellModel.h │ │ │ ├── JXCategoryNumberCellModel.m │ │ │ ├── JXCategoryNumberView.h │ │ │ └── JXCategoryNumberView.m │ │ │ ├── Title │ │ │ ├── JXCategoryTitleCell.h │ │ │ ├── JXCategoryTitleCell.m │ │ │ ├── JXCategoryTitleCellModel.h │ │ │ ├── JXCategoryTitleCellModel.m │ │ │ ├── JXCategoryTitleView.h │ │ │ └── JXCategoryTitleView.m │ │ │ ├── TitleImage │ │ │ ├── JXCategoryTitleImageCell.h │ │ │ ├── JXCategoryTitleImageCell.m │ │ │ ├── JXCategoryTitleImageCellModel.h │ │ │ ├── JXCategoryTitleImageCellModel.m │ │ │ ├── JXCategoryTitleImageView.h │ │ │ └── JXCategoryTitleImageView.m │ │ │ └── VerticalZoomTitle │ │ │ ├── JXCategoryTitleVerticalZoomCell.h │ │ │ ├── JXCategoryTitleVerticalZoomCell.m │ │ │ ├── JXCategoryTitleVerticalZoomCellModel.h │ │ │ ├── JXCategoryTitleVerticalZoomCellModel.m │ │ │ ├── JXCategoryTitleVerticalZoomView.h │ │ │ └── JXCategoryTitleVerticalZoomView.m │ ├── Local Podspecs │ │ ├── CollectionSwipableCellExtension.podspec.json │ │ ├── HDCollectionView.podspec.json │ │ └── Yoga.podspec.json │ ├── MJRefresh.xcodeproj │ │ └── project.pbxproj │ ├── MJRefresh │ │ ├── LICENSE │ │ ├── MJRefresh │ │ │ ├── Base │ │ │ │ ├── MJRefreshAutoFooter.h │ │ │ │ ├── MJRefreshAutoFooter.m │ │ │ │ ├── MJRefreshBackFooter.h │ │ │ │ ├── MJRefreshBackFooter.m │ │ │ │ ├── MJRefreshComponent.h │ │ │ │ ├── MJRefreshComponent.m │ │ │ │ ├── MJRefreshFooter.h │ │ │ │ ├── MJRefreshFooter.m │ │ │ │ ├── MJRefreshHeader.h │ │ │ │ ├── MJRefreshHeader.m │ │ │ │ ├── MJRefreshTrailer.h │ │ │ │ └── MJRefreshTrailer.m │ │ │ ├── Custom │ │ │ │ ├── Footer │ │ │ │ │ ├── Auto │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ │ └── Back │ │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ │ ├── Header │ │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ │ └── MJRefreshStateHeader.m │ │ │ │ └── Trailer │ │ │ │ │ ├── MJRefreshNormalTrailer.h │ │ │ │ │ ├── MJRefreshNormalTrailer.m │ │ │ │ │ ├── MJRefreshStateTrailer.h │ │ │ │ │ └── MJRefreshStateTrailer.m │ │ │ ├── MJRefresh.bundle │ │ │ │ ├── arrow@2x.png │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── ru.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── trail_arrow@2x.png │ │ │ │ ├── uk.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── zh-Hans.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ └── zh-Hant.lproj │ │ │ │ │ └── Localizable.strings │ │ │ ├── MJRefresh.h │ │ │ ├── MJRefreshConfig.h │ │ │ ├── MJRefreshConfig.m │ │ │ ├── MJRefreshConst.h │ │ │ ├── MJRefreshConst.m │ │ │ ├── NSBundle+MJRefresh.h │ │ │ ├── NSBundle+MJRefresh.m │ │ │ ├── UICollectionViewLayout+MJRefresh.h │ │ │ ├── UICollectionViewLayout+MJRefresh.m │ │ │ ├── UIScrollView+MJExtension.h │ │ │ ├── UIScrollView+MJExtension.m │ │ │ ├── UIScrollView+MJRefresh.h │ │ │ ├── UIScrollView+MJRefresh.m │ │ │ ├── UIView+MJExtension.h │ │ │ └── UIView+MJExtension.m │ │ └── README.md │ ├── Manifest.lock │ ├── Masonry.xcodeproj │ │ └── project.pbxproj │ ├── Masonry │ │ ├── LICENSE │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASCompositeConstraint.m │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraint.m │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASConstraintMaker.m │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASLayoutConstraint.m │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewAttribute.m │ │ │ ├── MASViewConstraint.h │ │ │ ├── MASViewConstraint.m │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASAdditions.m │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASAdditions.m │ │ │ ├── View+MASShorthandAdditions.h │ │ │ ├── ViewController+MASAdditions.h │ │ │ └── ViewController+MASAdditions.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── SDAutoLayout.xcodeproj │ │ └── project.pbxproj │ ├── SDAutoLayout │ │ ├── LICENSE │ │ ├── README.md │ │ └── SDAutoLayoutDemo │ │ │ └── SDAutoLayout │ │ │ ├── SDAutoLayout.h │ │ │ ├── UITableView+SDAutoTableViewCellHeight.h │ │ │ ├── UITableView+SDAutoTableViewCellHeight.m │ │ │ ├── UIView+SDAutoLayout.h │ │ │ └── UIView+SDAutoLayout.m │ ├── SDWebImage.xcodeproj │ │ └── project.pbxproj │ ├── SDWebImage │ │ ├── LICENSE │ │ ├── README.md │ │ └── SDWebImage │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSButton+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── NSImage+WebCache.h │ │ │ ├── NSImage+WebCache.m │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageRep.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheConfig.m │ │ │ ├── SDWebImageCoder.h │ │ │ ├── SDWebImageCoder.m │ │ │ ├── SDWebImageCoderHelper.h │ │ │ ├── SDWebImageCoderHelper.m │ │ │ ├── SDWebImageCodersManager.h │ │ │ ├── SDWebImageCodersManager.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageFrame.h │ │ │ ├── SDWebImageFrame.m │ │ │ ├── SDWebImageGIFCoder.h │ │ │ ├── SDWebImageGIFCoder.m │ │ │ ├── SDWebImageImageIOCoder.h │ │ │ ├── SDWebImageImageIOCoder.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheOperation.m │ ├── SJAttributesFactory.xcodeproj │ │ └── project.pbxproj │ ├── SJAttributesFactory │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── SJAttributesFactory │ │ │ ├── Deprecated │ │ │ ├── SJAttributeWorker.h │ │ │ ├── SJAttributeWorker.m │ │ │ ├── SJAttributesRecorder.h │ │ │ └── SJAttributesRecorder.m │ │ │ ├── NSAttributedString+SJMake.h │ │ │ ├── NSAttributedString+SJMake.m │ │ │ ├── SJAttributesFactory.h │ │ │ └── UIKitText │ │ │ ├── SJUIKitAttributesDefines.h │ │ │ ├── SJUIKitTextMaker.h │ │ │ ├── SJUIKitTextMaker.m │ │ │ ├── SJUTAttributes.h │ │ │ ├── SJUTAttributes.m │ │ │ ├── SJUTRangeHandler.h │ │ │ ├── SJUTRangeHandler.m │ │ │ ├── SJUTRecorder.h │ │ │ ├── SJUTRecorder.m │ │ │ ├── SJUTRegexHandler.h │ │ │ └── SJUTRegexHandler.m │ ├── Target Support Files │ │ ├── CollectionSwipableCellExtension │ │ │ ├── CollectionSwipableCellExtension-Info.plist │ │ │ ├── CollectionSwipableCellExtension-dummy.m │ │ │ ├── CollectionSwipableCellExtension-prefix.pch │ │ │ ├── CollectionSwipableCellExtension-umbrella.h │ │ │ ├── CollectionSwipableCellExtension.debug.xcconfig │ │ │ ├── CollectionSwipableCellExtension.modulemap │ │ │ └── CollectionSwipableCellExtension.release.xcconfig │ │ ├── HDCollectionView │ │ │ ├── HDCollectionView-Info.plist │ │ │ ├── HDCollectionView-dummy.m │ │ │ ├── HDCollectionView-prefix.pch │ │ │ ├── HDCollectionView-umbrella.h │ │ │ ├── HDCollectionView.debug.xcconfig │ │ │ ├── HDCollectionView.modulemap │ │ │ └── HDCollectionView.release.xcconfig │ │ ├── HDListViewDiffer │ │ │ ├── HDListViewDiffer-Info.plist │ │ │ ├── HDListViewDiffer-dummy.m │ │ │ ├── HDListViewDiffer-prefix.pch │ │ │ ├── HDListViewDiffer-umbrella.h │ │ │ ├── HDListViewDiffer.debug.xcconfig │ │ │ ├── HDListViewDiffer.modulemap │ │ │ └── HDListViewDiffer.release.xcconfig │ │ ├── JXCategoryView │ │ │ ├── JXCategoryView-Info.plist │ │ │ ├── JXCategoryView-dummy.m │ │ │ ├── JXCategoryView-prefix.pch │ │ │ ├── JXCategoryView-umbrella.h │ │ │ ├── JXCategoryView.debug.xcconfig │ │ │ ├── JXCategoryView.modulemap │ │ │ └── JXCategoryView.release.xcconfig │ │ ├── MJRefresh │ │ │ ├── MJRefresh-Info.plist │ │ │ ├── MJRefresh-dummy.m │ │ │ ├── MJRefresh-prefix.pch │ │ │ ├── MJRefresh-umbrella.h │ │ │ ├── MJRefresh.debug.xcconfig │ │ │ ├── MJRefresh.modulemap │ │ │ └── MJRefresh.release.xcconfig │ │ ├── Masonry │ │ │ ├── Masonry-Info.plist │ │ │ ├── Masonry-dummy.m │ │ │ ├── Masonry-prefix.pch │ │ │ ├── Masonry-umbrella.h │ │ │ ├── Masonry.debug.xcconfig │ │ │ ├── Masonry.modulemap │ │ │ └── Masonry.release.xcconfig │ │ ├── Pods-HDCollectionView_Example │ │ │ ├── Info.plist │ │ │ ├── Pods-HDCollectionView_Example-Info.plist │ │ │ ├── Pods-HDCollectionView_Example-acknowledgements.markdown │ │ │ ├── Pods-HDCollectionView_Example-acknowledgements.plist │ │ │ ├── Pods-HDCollectionView_Example-dummy.m │ │ │ ├── Pods-HDCollectionView_Example-frameworks.sh │ │ │ ├── Pods-HDCollectionView_Example-resources.sh │ │ │ ├── Pods-HDCollectionView_Example-umbrella.h │ │ │ ├── Pods-HDCollectionView_Example.debug.xcconfig │ │ │ ├── Pods-HDCollectionView_Example.modulemap │ │ │ └── Pods-HDCollectionView_Example.release.xcconfig │ │ ├── Pods-HDCollectionView_Tests │ │ │ ├── Info.plist │ │ │ ├── Pods-HDCollectionView_Tests-Info.plist │ │ │ ├── Pods-HDCollectionView_Tests-acknowledgements.markdown │ │ │ ├── Pods-HDCollectionView_Tests-acknowledgements.plist │ │ │ ├── Pods-HDCollectionView_Tests-dummy.m │ │ │ ├── Pods-HDCollectionView_Tests-frameworks.sh │ │ │ ├── Pods-HDCollectionView_Tests-resources.sh │ │ │ ├── Pods-HDCollectionView_Tests-umbrella.h │ │ │ ├── Pods-HDCollectionView_Tests.debug.xcconfig │ │ │ ├── Pods-HDCollectionView_Tests.modulemap │ │ │ └── Pods-HDCollectionView_Tests.release.xcconfig │ │ ├── SDAutoLayout │ │ │ ├── SDAutoLayout-Info.plist │ │ │ ├── SDAutoLayout-dummy.m │ │ │ ├── SDAutoLayout-prefix.pch │ │ │ ├── SDAutoLayout-umbrella.h │ │ │ ├── SDAutoLayout.debug.xcconfig │ │ │ ├── SDAutoLayout.modulemap │ │ │ └── SDAutoLayout.release.xcconfig │ │ ├── SDWebImage │ │ │ ├── SDWebImage-Info.plist │ │ │ ├── SDWebImage-dummy.m │ │ │ ├── SDWebImage-prefix.pch │ │ │ ├── SDWebImage-umbrella.h │ │ │ ├── SDWebImage.debug.xcconfig │ │ │ ├── SDWebImage.modulemap │ │ │ └── SDWebImage.release.xcconfig │ │ ├── SJAttributesFactory │ │ │ ├── SJAttributesFactory-Info.plist │ │ │ ├── SJAttributesFactory-dummy.m │ │ │ ├── SJAttributesFactory-prefix.pch │ │ │ ├── SJAttributesFactory-umbrella.h │ │ │ ├── SJAttributesFactory.debug.xcconfig │ │ │ ├── SJAttributesFactory.modulemap │ │ │ └── SJAttributesFactory.release.xcconfig │ │ ├── YYModel │ │ │ ├── YYModel-Info.plist │ │ │ ├── YYModel-dummy.m │ │ │ ├── YYModel-prefix.pch │ │ │ ├── YYModel-umbrella.h │ │ │ ├── YYModel.debug.xcconfig │ │ │ ├── YYModel.modulemap │ │ │ └── YYModel.release.xcconfig │ │ └── Yoga │ │ │ ├── Yoga-Info.plist │ │ │ ├── Yoga-dummy.m │ │ │ ├── Yoga-prefix.pch │ │ │ ├── Yoga-umbrella.h │ │ │ ├── Yoga.debug.xcconfig │ │ │ ├── Yoga.modulemap │ │ │ └── Yoga.release.xcconfig │ ├── YYModel.xcodeproj │ │ └── project.pbxproj │ ├── YYModel │ │ ├── LICENSE │ │ ├── README.md │ │ └── YYModel │ │ │ ├── NSObject+YYModel.h │ │ │ ├── NSObject+YYModel.m │ │ │ ├── YYClassInfo.h │ │ │ ├── YYClassInfo.m │ │ │ └── YYModel.h │ ├── Yoga.xcodeproj │ │ └── project.pbxproj │ └── Yoga │ │ ├── LICENSE │ │ ├── LICENSE-examples │ │ ├── README.md │ │ └── yoga │ │ ├── CompactValue.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── YGConfig.cpp │ │ ├── YGConfig.h │ │ ├── YGEnums.cpp │ │ ├── YGEnums.h │ │ ├── YGFloatOptional.h │ │ ├── YGLayout.cpp │ │ ├── YGLayout.h │ │ ├── YGMacros.h │ │ ├── YGMarker.cpp │ │ ├── YGMarker.h │ │ ├── YGNode.cpp │ │ ├── YGNode.h │ │ ├── YGNodePrint.cpp │ │ ├── YGNodePrint.h │ │ ├── YGStyle.cpp │ │ ├── YGStyle.h │ │ ├── YGValue.cpp │ │ ├── YGValue.h │ │ ├── Yoga-internal.h │ │ ├── Yoga.cpp │ │ ├── Yoga.h │ │ ├── instrumentation.h │ │ ├── log.cpp │ │ └── log.h └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── HDCollectionView.podspec ├── HDCollectionView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── HDCollectionView │ └── Class │ ├── Helper │ ├── HDAssociationManager.h │ ├── HDAssociationManager.m │ ├── HDCellFrameCacheHelper.h │ ├── HDCellFrameCacheHelper.m │ ├── HDCollectionView+HDHelper.h │ ├── HDCollectionView+HDHelper.m │ ├── HDDefines.h │ ├── HDHeaderStopHelper.h │ ├── HDHeaderStopHelper.m │ ├── HDModelProtocol.h │ ├── HDUpdateUIProtocol.h │ ├── HDYogaCalculateHelper.h │ ├── HDYogaCalculateHelper.m │ ├── NSObject+HDCopy.h │ └── NSObject+HDCopy.m │ ├── Layouts │ ├── HDBaseLayout+Cache.h │ ├── HDBaseLayout+Cache.m │ ├── HDBaseLayout.h │ ├── HDBaseLayout.m │ ├── HDCollectionViewFlowLayout.h │ ├── HDCollectionViewFlowLayout.m │ ├── HDCollectionViewLayout.h │ ├── HDCollectionViewLayout.m │ ├── HDLayoutProtocol.h │ ├── HDWaterFlowLayout.h │ ├── HDWaterFlowLayout.m │ ├── HDYogaFlowLayout.h │ └── HDYogaFlowLayout.m │ ├── Models │ ├── HDCellModel.h │ ├── HDCellModel.m │ ├── HDSectionModel.h │ └── HDSectionModel.m │ └── Views │ ├── HDCollectionCell.h │ ├── HDCollectionCell.m │ ├── HDCollectionView.h │ ├── HDCollectionView.m │ ├── HDScrollJoinView.h │ ├── HDScrollJoinView.m │ ├── HDSectionView.h │ └── HDSectionView.m ├── LICENSE ├── README.md └── README_CN.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/HDCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HDCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HDCollectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/HDCollectionView.xcodeproj/xcshareddata/xcschemes/HDCollectionView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView.xcodeproj/xcshareddata/xcschemes/HDCollectionView-Example.xcscheme -------------------------------------------------------------------------------- /Example/HDCollectionView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HDCollectionView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/HDCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/HDCollectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/Model/AHCModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/Model/AHCModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/Model/AHCModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/Model/AHCModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCBaseCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCBaseCollectionView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCBaseCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCBaseCollectionView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCHeader.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCHeader.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCNormalCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCNormalCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCNormalCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCNormalCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCRefPriceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCRefPriceCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCRefPriceCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCRefPriceCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCTopHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCTopHeader.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCTopHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/AHCTopHeader.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/UIView+AroundLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/UIView+AroundLine.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/View/UIView+AroundLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/View/UIView+AroundLine.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/AutoHomeCarInfoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/AutoHomeCarInfoVC.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/AutoHomeCarInfoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/AutoHomeCarInfoVC.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/HDSCVOffsetBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/HDSCVOffsetBinder.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/HDSCVOffsetBinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewController/HDSCVOffsetBinder.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewModel/AHCVCViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewModel/AHCVCViewModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewModel/AHCVCViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewModel/AHCVCViewModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewModel/carInfo.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/AutoHomeCarInfo/ViewModel/carInfo.geojson -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo1/DemoVC1Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo1/DemoVC1Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Cell2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Cell2.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Cell2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Cell2.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo2/DemoVC2Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo2/DemoVC2Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3CellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3CellModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3CellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3CellModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3CellVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3CellVM.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3CellVM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3CellVM.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo3/DemoVC3Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo3/DemoVC3Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Cell2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Cell2.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Cell2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Cell2.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4DecorationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4DecorationView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4DecorationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4DecorationView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4ViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4ViewModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo4/DemoVC4ViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo4/DemoVC4ViewModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Cell2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Cell2.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Cell2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Cell2.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5DecorationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5DecorationView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5DecorationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5DecorationView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo5/DemoVC5Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo5/DemoVC5Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6DecorationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6DecorationView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6DecorationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6DecorationView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo6/DemoVC6Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo6/DemoVC6Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7Cell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7Cell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7Footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7Footer.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7Footer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7Footer.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7Header.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/Demo7/DemoVC7Header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/Demo7/DemoVC7Header.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/HDDemoCellViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/HDDemoCellViewModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/HDDemoCellViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/HDDemoCellViewModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/HDNewsCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/HDNewsCollectionView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/HDNewsCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/HDNewsCollectionView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/HDStopView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/HDStopView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/HDStopView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/HDStopView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/HDWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/HDWebView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/HDWebView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/HDWebView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/NewsDetailDemoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/NewsDetailDemoVC.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/NewsDetailDemo/NewsDetailDemoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/NewsDetailDemo/NewsDetailDemoVC.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2FriendVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2FriendVC.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2FriendVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2FriendVC.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2VC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2VC.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2VC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/Controller/QQDemo2VC.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/Model/QQDemoFriendModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/Model/QQDemoFriendModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/Model/QQDemoFriendModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/Model/QQDemoFriendModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoCreateCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoCreateCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoCreateCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoCreateCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendGroupHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendGroupHeader.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendGroupHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoFriendGroupHeader.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoGapCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoGapCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoGapCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoGapCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoSearchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoSearchCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/View/QQDemoSearchCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/View/QQDemoSearchCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2FriendVCVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2FriendVCVM.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2FriendVCVM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2FriendVCVM.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2VCViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2VCViewModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2VCViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemo2VCViewModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoFriendCellVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoFriendCellVM.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoFriendCellVM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoFriendCellVM.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoOpenCloseSec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoOpenCloseSec.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoOpenCloseSec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoOpenCloseSec.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoVCViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoVCViewModel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoVCViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Demos/QQDemo2/ViewModel/QQDemoVCViewModel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/HDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/HDAppDelegate.h -------------------------------------------------------------------------------- /Example/HDCollectionView/HDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/HDAppDelegate.m -------------------------------------------------------------------------------- /Example/HDCollectionView/HDCollectionView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/HDCollectionView-Info.plist -------------------------------------------------------------------------------- /Example/HDCollectionView/HDCollectionView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/HDCollectionView-Prefix.pch -------------------------------------------------------------------------------- /Example/HDCollectionView/Images.xcassets/AHCTopHederDelete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Images.xcassets/AHCTopHederDelete.imageset/Contents.json -------------------------------------------------------------------------------- /Example/HDCollectionView/Images.xcassets/AHCTopHederDelete.imageset/删除@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Images.xcassets/AHCTopHederDelete.imageset/删除@2x.png -------------------------------------------------------------------------------- /Example/HDCollectionView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HDCollectionView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/CHD_ListView_Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/CHD_ListView_Structure.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/CHD_ListView_Structure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/CHD_ListView_Structure.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDCollectionView+MultipleScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDCollectionView+MultipleScroll.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDCollectionView+MultipleScroll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDCollectionView+MultipleScroll.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListMainVC.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListMainVC.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListSubVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListSubVC.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListSubVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListSubVC.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListView.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/HDMultipleScrollListView/HDMultipleScrollListView.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/NSArray+HDHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/NSArray+HDHelper.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/NSArray+HDHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/NSArray+HDHelper.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/UIView+gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/UIView+gesture.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/UIView+gesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/UIView+gesture.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/YYFPSLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/YYFPSLabel.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/YYFPSLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/YYFPSLabel.m -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/YYWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/YYWeakProxy.h -------------------------------------------------------------------------------- /Example/HDCollectionView/Utility/YYWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/Utility/YYWeakProxy.m -------------------------------------------------------------------------------- /Example/HDCollectionView/VCCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/VCCell.h -------------------------------------------------------------------------------- /Example/HDCollectionView/VCCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/VCCell.m -------------------------------------------------------------------------------- /Example/HDCollectionView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/ViewController.h -------------------------------------------------------------------------------- /Example/HDCollectionView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/ViewController.m -------------------------------------------------------------------------------- /Example/HDCollectionView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/HDCollectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView/main.m -------------------------------------------------------------------------------- /Example/HDCollectionView_Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/HDCollectionView_Example.entitlements -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/.project_cache/installation_cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/.project_cache/installation_cache.yaml -------------------------------------------------------------------------------- /Example/Pods/.project_cache/metadata_cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/.project_cache/metadata_cache.yaml -------------------------------------------------------------------------------- /Example/Pods/.project_cache/version: -------------------------------------------------------------------------------- 1 | 1.11.3.project-cache.003 -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/LICENSE -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/CollectionSwipableCellExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/CollectionSwipableCellExtension.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/CollectionSwipableCellOneButtonLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/CollectionSwipableCellOneButtonLayout.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/Private/CollectionSwipableCellHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/Private/CollectionSwipableCellHandler.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableCellLayouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableCellLayouter.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableCollection.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableUICollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableUICollectionView.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableUITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/Private/SwipableUITableView.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/UICollectionViewCell+CollectionSwipableCellExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/UICollectionViewCell+CollectionSwipableCellExtension.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/Library/UITableViewCell+CollectionSwipableCellExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/Library/UITableViewCell+CollectionSwipableCellExtension.swift -------------------------------------------------------------------------------- /Example/Pods/CollectionSwipableCellExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/CollectionSwipableCellExtension/README.md -------------------------------------------------------------------------------- /Example/Pods/HDCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/HDListViewDiffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/HDListViewDiffer.h -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/HDListViewDiffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/HDListViewDiffer.m -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UICollectionView+HDDiffReload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UICollectionView+HDDiffReload.h -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UICollectionView+HDDiffReload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UICollectionView+HDDiffReload.m -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UITableView+HDDiffReload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UITableView+HDDiffReload.h -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UITableView+HDDiffReload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/HDListViewDiffer/Classes/UITableView+HDDiffReload.m -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/LICENSE -------------------------------------------------------------------------------- /Example/Pods/HDListViewDiffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/HDListViewDiffer/README.md -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/LICENSE -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/README.md -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Base/JXCategoryBaseView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryCollectionView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryCollectionView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryFactory.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryFactory.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryIndicatorParamsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryIndicatorParamsModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryIndicatorParamsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryIndicatorParamsModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryIndicatorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryIndicatorProtocol.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryListCollectionContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryListCollectionContainerView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryListCollectionContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryListCollectionContainerView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryListContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryListContainerView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryListContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryListContainerView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryViewAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryViewAnimator.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryViewAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryViewAnimator.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/JXCategoryViewDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/JXCategoryViewDefines.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/UIColor+JXAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/UIColor+JXAdd.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Common/UIColor+JXAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Common/UIColor+JXAdd.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Dot/JXCategoryDotView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Image/JXCategoryImageView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Indicator/JXCategoryIndicatorView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/JXCategoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/JXCategoryView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Number/JXCategoryNumberView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/Title/JXCategoryTitleView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/TitleImage/JXCategoryTitleImageView.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h -------------------------------------------------------------------------------- /Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/JXCategoryView/Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/CollectionSwipableCellExtension.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Local Podspecs/CollectionSwipableCellExtension.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HDCollectionView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Local Podspecs/HDCollectionView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/Yoga.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Local Podspecs/Yoga.podspec.json -------------------------------------------------------------------------------- /Example/Pods/MJRefresh.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshAutoFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshComponent.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshTrailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshTrailer.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshTrailer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Base/MJRefreshTrailer.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshGifHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshNormalHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Header/MJRefreshStateHeader.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/trail_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/trail_arrow@2x.png -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefreshConfig.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/MJRefreshConst.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/NSBundle+MJRefresh.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UICollectionViewLayout+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UICollectionViewLayout+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UICollectionViewLayout+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UICollectionViewLayout+MJRefresh.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJExtension.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UIScrollView+MJRefresh.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.h -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/MJRefresh/UIView+MJExtension.m -------------------------------------------------------------------------------- /Example/Pods/MJRefresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/MJRefresh/README.md -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Masonry.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/LICENSE -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/README.md -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/SDAutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/SDAutoLayout.h -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UITableView+SDAutoTableViewCellHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UITableView+SDAutoTableViewCellHeight.h -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UITableView+SDAutoTableViewCellHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UITableView+SDAutoTableViewCellHeight.m -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UIView+SDAutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UIView+SDAutoLayout.h -------------------------------------------------------------------------------- /Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UIView+SDAutoLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDAutoLayout/SDAutoLayoutDemo/SDAutoLayout/UIView+SDAutoLayout.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/NSButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/NSButton+WebCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDAnimatedImageRep.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoder.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCoderHelper.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCodersManager.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageFrame.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageGIFCoder.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageImageIOCoder.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/SDWebImageTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/SDWebImageTransition.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+ForceDecode.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+MemoryCacheCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+MemoryCacheCost.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+MemoryCacheCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+MemoryCacheCost.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Example/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/LICENSE.md -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/README.md -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributeWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributeWorker.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributeWorker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributeWorker.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributesRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributesRecorder.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributesRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/Deprecated/SJAttributesRecorder.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/NSAttributedString+SJMake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/NSAttributedString+SJMake.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/NSAttributedString+SJMake.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/NSAttributedString+SJMake.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/SJAttributesFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/SJAttributesFactory.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUIKitAttributesDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUIKitAttributesDefines.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUIKitTextMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUIKitTextMaker.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUIKitTextMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUIKitTextMaker.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTAttributes.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTAttributes.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRangeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRangeHandler.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRangeHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRangeHandler.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRecorder.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRecorder.m -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRegexHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRegexHandler.h -------------------------------------------------------------------------------- /Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRegexHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/SJAttributesFactory/SJAttributesFactory/UIKitText/SJUTRegexHandler.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/CollectionSwipableCellExtension/CollectionSwipableCellExtension.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDCollectionView/HDCollectionView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDCollectionView/HDCollectionView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/HDListViewDiffer/HDListViewDiffer.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/JXCategoryView/JXCategoryView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/JXCategoryView/JXCategoryView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MJRefresh/MJRefresh.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/MJRefresh/MJRefresh.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Masonry/Masonry.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Masonry/Masonry.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Example/Pods-HDCollectionView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Pods-HDCollectionView_Tests/Pods-HDCollectionView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDAutoLayout/SDAutoLayout.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SDWebImage/SDWebImage.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SDWebImage/SDWebImage.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/SJAttributesFactory/SJAttributesFactory.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/YYModel/YYModel.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/YYModel/YYModel.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Yoga/Yoga.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Target Support Files/Yoga/Yoga.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/YYModel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/YYModel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/LICENSE -------------------------------------------------------------------------------- /Example/Pods/YYModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/README.md -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/NSObject+YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/YYModel/NSObject+YYModel.h -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/NSObject+YYModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/YYModel/NSObject+YYModel.m -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/YYClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/YYModel/YYClassInfo.h -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/YYClassInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/YYModel/YYClassInfo.m -------------------------------------------------------------------------------- /Example/Pods/YYModel/YYModel/YYModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/YYModel/YYModel/YYModel.h -------------------------------------------------------------------------------- /Example/Pods/Yoga.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Yoga/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Yoga/LICENSE-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/LICENSE-examples -------------------------------------------------------------------------------- /Example/Pods/Yoga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/README.md -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/CompactValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/CompactValue.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/Utils.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/Utils.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGConfig.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGConfig.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGEnums.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGEnums.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGFloatOptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGFloatOptional.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGLayout.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGLayout.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGMacros.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGMarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGMarker.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGMarker.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGNode.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGNode.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGNodePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGNodePrint.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGNodePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGNodePrint.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGStyle.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGStyle.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGValue.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/YGValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/YGValue.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/Yoga-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/Yoga-internal.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/Yoga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/Yoga.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/Yoga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/instrumentation.h -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/log.cpp -------------------------------------------------------------------------------- /Example/Pods/Yoga/yoga/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Pods/Yoga/yoga/log.h -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /HDCollectionView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView.podspec -------------------------------------------------------------------------------- /HDCollectionView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HDCollectionView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDAssociationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDAssociationManager.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDAssociationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDAssociationManager.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCellFrameCacheHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCellFrameCacheHelper.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCellFrameCacheHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCellFrameCacheHelper.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCollectionView+HDHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCollectionView+HDHelper.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCollectionView+HDHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDCollectionView+HDHelper.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDDefines.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDHeaderStopHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDHeaderStopHelper.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDHeaderStopHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDHeaderStopHelper.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDModelProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDModelProtocol.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDUpdateUIProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDUpdateUIProtocol.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDYogaCalculateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDYogaCalculateHelper.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/HDYogaCalculateHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/HDYogaCalculateHelper.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/NSObject+HDCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/NSObject+HDCopy.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Helper/NSObject+HDCopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Helper/NSObject+HDCopy.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout+Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout+Cache.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout+Cache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout+Cache.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDBaseLayout.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewFlowLayout.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewLayout.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDCollectionViewLayout.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDLayoutProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDLayoutProtocol.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDWaterFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDWaterFlowLayout.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDWaterFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDWaterFlowLayout.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDYogaFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDYogaFlowLayout.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDYogaFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Layouts/HDYogaFlowLayout.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Models/HDCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Models/HDCellModel.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Models/HDCellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Models/HDCellModel.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Models/HDSectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Models/HDSectionModel.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Models/HDSectionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Models/HDSectionModel.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionCell.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionCell.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionView.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDCollectionView.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDScrollJoinView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDScrollJoinView.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDScrollJoinView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDScrollJoinView.m -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDSectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDSectionView.h -------------------------------------------------------------------------------- /HDCollectionView/Classes/HDCollectionView/Class/Views/HDSectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/HDCollectionView/Classes/HDCollectionView/Class/Views/HDSectionView.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donggelaile/HDCollectionView/HEAD/README_CN.md --------------------------------------------------------------------------------