├── .gitignore ├── .travis.yml ├── Example ├── IrregularCollectionUIKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── IrregularCollectionUIKit_Example.xcscheme ├── IrregularCollectionUIKit.xcworkspace │ └── contents.xcworkspacedata ├── IrregularCollectionUIKit │ ├── DemoAppDelegate.h │ ├── DemoAppDelegate.m │ ├── DemoViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── IrregularCollectionUIKit-Info.plist │ ├── IrregularCollectionUIKit-Prefix.pch │ ├── IrregularCollectionUIKit_Example-Bridging-Header.h │ ├── Launch Screen.storyboard │ ├── Main.storyboard │ ├── Resources │ │ └── img │ │ │ ├── 201499971412727010.jpg │ │ │ ├── 20160408110556_11.jpg │ │ │ ├── 201606100719471127_1.jpg │ │ │ ├── 7.jpg │ │ │ ├── 99763_62164_3159.jpg │ │ │ ├── R1280x0.jpg │ │ │ ├── article_20150904-1.jpg │ │ │ ├── channelProfileView.png │ │ │ └── img_20150502111148_a5d91d53.jpg │ ├── SampleContent.swift │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── IrregularCollectionUIKit │ │ │ │ ├── IrregularCollectionUIKit.h │ │ │ │ ├── IrregularCollectionViewController.h │ │ │ │ ├── IrregularCollectionViewLayout.h │ │ │ │ ├── IrregularLayoutAttributesManager.h │ │ │ │ └── PropertyManagedViewController.h │ │ └── Public │ │ │ └── IrregularCollectionUIKit │ │ │ ├── IrregularCollectionUIKit.h │ │ │ ├── IrregularCollectionViewController.h │ │ │ ├── IrregularCollectionViewLayout.h │ │ │ ├── IrregularLayoutAttributesManager.h │ │ │ └── PropertyManagedViewController.h │ ├── Local Podspecs │ │ └── IrregularCollectionUIKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── IrregularCollectionUIKit │ │ ├── IrregularCollectionUIKit-dummy.m │ │ ├── IrregularCollectionUIKit-prefix.pch │ │ └── IrregularCollectionUIKit.xcconfig │ │ ├── Pods-IrregularCollectionUIKit_Example │ │ ├── Pods-IrregularCollectionUIKit_Example-acknowledgements.markdown │ │ ├── Pods-IrregularCollectionUIKit_Example-acknowledgements.plist │ │ ├── Pods-IrregularCollectionUIKit_Example-dummy.m │ │ ├── Pods-IrregularCollectionUIKit_Example-frameworks.sh │ │ ├── Pods-IrregularCollectionUIKit_Example-resources.sh │ │ ├── Pods-IrregularCollectionUIKit_Example.debug.xcconfig │ │ └── Pods-IrregularCollectionUIKit_Example.release.xcconfig │ │ └── Pods-IrregularCollectionUIKit_Tests │ │ ├── Pods-IrregularCollectionUIKit_Tests-acknowledgements.markdown │ │ ├── Pods-IrregularCollectionUIKit_Tests-acknowledgements.plist │ │ ├── Pods-IrregularCollectionUIKit_Tests-dummy.m │ │ ├── Pods-IrregularCollectionUIKit_Tests-frameworks.sh │ │ ├── Pods-IrregularCollectionUIKit_Tests-resources.sh │ │ ├── Pods-IrregularCollectionUIKit_Tests.debug.xcconfig │ │ └── Pods-IrregularCollectionUIKit_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── IrregularCollectionUIKit.podspec ├── IrregularCollectionUIKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── IrregularCollectionUIKit.xcscheme ├── IrregularCollectionUIKit ├── Assets │ └── .gitkeep ├── Classes │ ├── .gitkeep │ ├── IrregularCollectionUIKit.h │ ├── IrregularCollectionViewController.h │ ├── IrregularCollectionViewController.m │ ├── IrregularCollectionViewLayout.h │ ├── IrregularCollectionViewLayout.m │ ├── IrregularLayoutAttributesManager.h │ ├── IrregularLayoutAttributesManager.m │ ├── PropertyManagedViewController.h │ └── PropertyManagedViewController.m └── Info.plist ├── LICENSE ├── README.md ├── _Pods.xcodeproj └── screenshots ├── sh_001.png ├── sh_002.png └── sh_003.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit.xcodeproj/xcshareddata/xcschemes/IrregularCollectionUIKit_Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit.xcodeproj/xcshareddata/xcschemes/IrregularCollectionUIKit_Example.xcscheme -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/DemoAppDelegate.h -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/DemoAppDelegate.m -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/DemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/DemoViewController.swift -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/IrregularCollectionUIKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/IrregularCollectionUIKit-Info.plist -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/IrregularCollectionUIKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/IrregularCollectionUIKit-Prefix.pch -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/IrregularCollectionUIKit_Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/IrregularCollectionUIKit_Example-Bridging-Header.h -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Launch Screen.storyboard -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Main.storyboard -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/201499971412727010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/201499971412727010.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/20160408110556_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/20160408110556_11.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/201606100719471127_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/201606100719471127_1.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/7.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/99763_62164_3159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/99763_62164_3159.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/R1280x0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/R1280x0.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/article_20150904-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/article_20150904-1.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/channelProfileView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/channelProfileView.png -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/Resources/img/img_20150502111148_a5d91d53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/Resources/img/img_20150502111148_a5d91d53.jpg -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/SampleContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/SampleContent.swift -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/IrregularCollectionUIKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/IrregularCollectionUIKit/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/IrregularCollectionUIKit/IrregularCollectionUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularCollectionUIKit.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/IrregularCollectionUIKit/IrregularCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularCollectionViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/IrregularCollectionUIKit/IrregularCollectionViewLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularCollectionViewLayout.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/IrregularCollectionUIKit/IrregularLayoutAttributesManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularLayoutAttributesManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/IrregularCollectionUIKit/PropertyManagedViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/PropertyManagedViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/IrregularCollectionUIKit/IrregularCollectionUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularCollectionUIKit.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/IrregularCollectionUIKit/IrregularCollectionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularCollectionViewController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/IrregularCollectionUIKit/IrregularCollectionViewLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularCollectionViewLayout.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/IrregularCollectionUIKit/IrregularLayoutAttributesManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/IrregularLayoutAttributesManager.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/IrregularCollectionUIKit/PropertyManagedViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../IrregularCollectionUIKit/Classes/PropertyManagedViewController.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/IrregularCollectionUIKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Local Podspecs/IrregularCollectionUIKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/IrregularCollectionUIKit/IrregularCollectionUIKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/IrregularCollectionUIKit/IrregularCollectionUIKit-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/IrregularCollectionUIKit/IrregularCollectionUIKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/IrregularCollectionUIKit/IrregularCollectionUIKit-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/IrregularCollectionUIKit/IrregularCollectionUIKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/IrregularCollectionUIKit/IrregularCollectionUIKit.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Example/Pods-IrregularCollectionUIKit_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Pods/Target Support Files/Pods-IrregularCollectionUIKit_Tests/Pods-IrregularCollectionUIKit_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IrregularCollectionUIKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit.podspec -------------------------------------------------------------------------------- /IrregularCollectionUIKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IrregularCollectionUIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IrregularCollectionUIKit.xcodeproj/xcshareddata/xcschemes/IrregularCollectionUIKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit.xcodeproj/xcshareddata/xcschemes/IrregularCollectionUIKit.xcscheme -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularCollectionUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularCollectionUIKit.h -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularCollectionViewController.h -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularCollectionViewController.m -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularCollectionViewLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularCollectionViewLayout.h -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularCollectionViewLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularCollectionViewLayout.m -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularLayoutAttributesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularLayoutAttributesManager.h -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/IrregularLayoutAttributesManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/IrregularLayoutAttributesManager.m -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/PropertyManagedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/PropertyManagedViewController.h -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Classes/PropertyManagedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Classes/PropertyManagedViewController.m -------------------------------------------------------------------------------- /IrregularCollectionUIKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/IrregularCollectionUIKit/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /screenshots/sh_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/screenshots/sh_001.png -------------------------------------------------------------------------------- /screenshots/sh_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/screenshots/sh_002.png -------------------------------------------------------------------------------- /screenshots/sh_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisces/IrregularCollectionUIKit/HEAD/screenshots/sh_003.png --------------------------------------------------------------------------------