├── MultipleVariantCell ├── MultipleVariantCell.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── MultipleVariantCell │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── MultipleVariantTableViewCell.h │ ├── MultipleVariantTableViewCell.m │ ├── SKRow.h │ ├── SKRow.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── MultipleVariantCellTests │ ├── Info.plist │ └── MultipleVariantCellTests.m └── MultipleVariantCellUITests │ ├── Info.plist │ └── MultipleVariantCellUITests.m └── README.md /MultipleVariantCell/MultipleVariantCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/AppDelegate.h -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/AppDelegate.m -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/Info.plist -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/MultipleVariantTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/MultipleVariantTableViewCell.h -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/MultipleVariantTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/MultipleVariantTableViewCell.m -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/SKRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/SKRow.h -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/SKRow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/SKRow.m -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/ViewController.h -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/ViewController.m -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCell/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCell/main.m -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCellTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCellTests/Info.plist -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCellTests/MultipleVariantCellTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCellTests/MultipleVariantCellTests.m -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCellUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCellUITests/Info.plist -------------------------------------------------------------------------------- /MultipleVariantCell/MultipleVariantCellUITests/MultipleVariantCellUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kelystor/MultipleVariantCell/HEAD/MultipleVariantCell/MultipleVariantCellUITests/MultipleVariantCellUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MultipleVariantCell 2 | 3 | for detail, please read this article:[iOS实现多个可变cell复杂界面的制作](http://www.jianshu.com/p/9fc838d46f5e) 4 | --------------------------------------------------------------------------------