├── Demo └── YHCollectionFlowLayout │ ├── Podfile.lock │ ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── Masonry │ │ │ │ ├── MASCompositeConstraint.h │ │ │ │ ├── MASConstraint+Private.h │ │ │ │ ├── MASConstraint.h │ │ │ │ ├── MASConstraintMaker.h │ │ │ │ ├── MASLayoutConstraint.h │ │ │ │ ├── MASUtilities.h │ │ │ │ ├── MASViewAttribute.h │ │ │ │ ├── MASViewConstraint.h │ │ │ │ ├── Masonry.h │ │ │ │ ├── NSArray+MASAdditions.h │ │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ │ ├── View+MASAdditions.h │ │ │ │ ├── View+MASShorthandAdditions.h │ │ │ │ └── ViewController+MASAdditions.h │ │ └── Public │ │ │ └── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ ├── Manifest.lock │ ├── 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 │ │ └── xcuserdata │ │ │ └── zhangchanggong.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-YHCollectionFlowLayout.xcscheme │ │ │ └── xcschememanagement.plist │ └── Target Support Files │ │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ └── Masonry.xcconfig │ │ └── Pods-YHCollectionFlowLayout │ │ ├── Pods-YHCollectionFlowLayout-acknowledgements.markdown │ │ ├── Pods-YHCollectionFlowLayout-acknowledgements.plist │ │ ├── Pods-YHCollectionFlowLayout-dummy.m │ │ ├── Pods-YHCollectionFlowLayout-frameworks.sh │ │ ├── Pods-YHCollectionFlowLayout-resources.sh │ │ ├── Pods-YHCollectionFlowLayout.debug.xcconfig │ │ └── Pods-YHCollectionFlowLayout.release.xcconfig │ ├── YHCollectionFlowLayout.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── zhangchanggong.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── zhangchanggong.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── YHCollectionFlowLayout.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── zhangchanggong.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── YHCollectionFlowLayout │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── luoli.imageset │ │ │ ├── Contents.json │ │ │ └── luoli.jpg │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Utils │ │ ├── UIView+FrameCategory.h │ │ └── UIView+FrameCategory.m │ ├── ViewController.h │ ├── ViewController.m │ ├── Views │ │ ├── YHCollectionFlowLayout.h │ │ ├── YHCollectionFlowLayout.m │ │ ├── YHCollectionViewCell.h │ │ └── YHCollectionViewCell.m │ └── main.m │ └── podfile ├── README.md └── YHCollectionFlowLayout ├── YHCollectionFlowLayout.h ├── YHCollectionFlowLayout.m ├── YHCollectionViewCell.h └── YHCollectionViewCell.m /Demo/YHCollectionFlowLayout/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Podfile.lock -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Manifest.lock -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/Pods-YHCollectionFlowLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/Pods-YHCollectionFlowLayout.xcscheme -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Pods.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-acknowledgements.markdown -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-acknowledgements.plist -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-dummy.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-frameworks.sh -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout-resources.sh -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout.debug.xcconfig -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/Pods/Target Support Files/Pods-YHCollectionFlowLayout/Pods-YHCollectionFlowLayout.release.xcconfig -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/project.xcworkspace/xcuserdata/zhangchanggong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/project.xcworkspace/xcuserdata/zhangchanggong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcodeproj/xcuserdata/zhangchanggong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcworkspace/xcuserdata/zhangchanggong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcworkspace/xcuserdata/zhangchanggong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcworkspace/xcuserdata/zhangchanggong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout.xcworkspace/xcuserdata/zhangchanggong.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/AppDelegate.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/AppDelegate.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/luoli.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/luoli.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/luoli.imageset/luoli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Assets.xcassets/luoli.imageset/luoli.jpg -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Info.plist -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Utils/UIView+FrameCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Utils/UIView+FrameCategory.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Utils/UIView+FrameCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Utils/UIView+FrameCategory.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/ViewController.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/ViewController.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionFlowLayout.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionFlowLayout.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionViewCell.h -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/Views/YHCollectionViewCell.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/Demo/YHCollectionFlowLayout/YHCollectionFlowLayout/main.m -------------------------------------------------------------------------------- /Demo/YHCollectionFlowLayout/podfile: -------------------------------------------------------------------------------- 1 | 2 | platform :ios, "8.0" 3 | 4 | target "YHCollectionFlowLayout" do 5 | 6 | pod 'Masonry', '~> 1.0.2' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/README.md -------------------------------------------------------------------------------- /YHCollectionFlowLayout/YHCollectionFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/YHCollectionFlowLayout/YHCollectionFlowLayout.h -------------------------------------------------------------------------------- /YHCollectionFlowLayout/YHCollectionFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/YHCollectionFlowLayout/YHCollectionFlowLayout.m -------------------------------------------------------------------------------- /YHCollectionFlowLayout/YHCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/YHCollectionFlowLayout/YHCollectionViewCell.h -------------------------------------------------------------------------------- /YHCollectionFlowLayout/YHCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarwuer/YHCollectionFlowLayout/HEAD/YHCollectionFlowLayout/YHCollectionViewCell.m --------------------------------------------------------------------------------