├── .gitignore ├── Demo.gif ├── ExpandingCollectionViewCell.xcodeproj └── project.pbxproj ├── ExpandingCollectionViewCell ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── SceneDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── PeopleViewController.swift ├── Person.swift └── PersonCell.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/Demo.gif -------------------------------------------------------------------------------- /ExpandingCollectionViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/App/AppDelegate.swift -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/App/Info.plist -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/App/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/App/SceneDelegate.swift -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/PeopleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/PeopleViewController.swift -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/Person.swift -------------------------------------------------------------------------------- /ExpandingCollectionViewCell/PersonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/ExpandingCollectionViewCell/PersonCell.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swift-student/ExpandingCollectionViewCell/HEAD/README.md --------------------------------------------------------------------------------