├── .gitignore ├── DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── DynamicCollectionViewCellWithAutoLayout-Demo.xccheckout │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── ZhangHonghao.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── angelvazquez.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── ZhangHonghao.xcuserdatad │ └── xcschemes │ │ ├── DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme │ │ └── xcschememanagement.plist │ ├── angelvazquez.xcuserdatad │ └── xcschemes │ │ ├── DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme │ │ └── xcschememanagement.plist │ └── honghaozhang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme │ └── xcschememanagement.plist ├── DynamicCollectionViewCellWithAutoLayout-Demo ├── AppDelegate.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Info.plist ├── Main.storyboard ├── MyCollectionViewCell.swift ├── MyCollectionViewCell.xib └── ViewController.swift ├── DynamicCollectionViewCellWithAutoLayout-DemoTests ├── DynamicCollectionViewCellWithAutoLayout_DemoTests.swift └── Info.plist ├── LICENSE.md ├── README.md ├── Screenshots ├── cell.png ├── contentCell.png ├── contentCell2.png └── titleCell.png ├── iOS Simulator Screen Shot1.png └── iOS Simulator Screen Shot2.png /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcshareddata/DynamicCollectionViewCellWithAutoLayout-Demo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcshareddata/DynamicCollectionViewCellWithAutoLayout-Demo.xccheckout -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcuserdata/ZhangHonghao.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcuserdata/ZhangHonghao.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcuserdata/angelvazquez.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/project.xcworkspace/xcuserdata/angelvazquez.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/ZhangHonghao.xcuserdatad/xcschemes/DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/ZhangHonghao.xcuserdatad/xcschemes/DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/ZhangHonghao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/ZhangHonghao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/angelvazquez.xcuserdatad/xcschemes/DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/angelvazquez.xcuserdatad/xcschemes/DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/angelvazquez.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/angelvazquez.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/honghaozhang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/honghaozhang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/honghaozhang.xcuserdatad/xcschemes/DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/honghaozhang.xcuserdatad/xcschemes/DynamicCollectionViewCellWithAutoLayout-Demo.xcscheme -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/honghaozhang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo.xcodeproj/xcuserdata/honghaozhang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/AppDelegate.swift -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/Info.plist -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/Main.storyboard -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/MyCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/MyCollectionViewCell.swift -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/MyCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/MyCollectionViewCell.xib -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-Demo/ViewController.swift -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-DemoTests/DynamicCollectionViewCellWithAutoLayout_DemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-DemoTests/DynamicCollectionViewCellWithAutoLayout_DemoTests.swift -------------------------------------------------------------------------------- /DynamicCollectionViewCellWithAutoLayout-DemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/DynamicCollectionViewCellWithAutoLayout-DemoTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/Screenshots/cell.png -------------------------------------------------------------------------------- /Screenshots/contentCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/Screenshots/contentCell.png -------------------------------------------------------------------------------- /Screenshots/contentCell2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/Screenshots/contentCell2.png -------------------------------------------------------------------------------- /Screenshots/titleCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/Screenshots/titleCell.png -------------------------------------------------------------------------------- /iOS Simulator Screen Shot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/iOS Simulator Screen Shot1.png -------------------------------------------------------------------------------- /iOS Simulator Screen Shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo/HEAD/iOS Simulator Screen Shot2.png --------------------------------------------------------------------------------