├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── README.md ├── ReuseCellConfigure.podspec ├── ReuseCellConfigure └── ReuseCellConfigure.swift └── ReuseCellConfigureSample ├── Podfile ├── Podfile.lock ├── Pods ├── Local Podspecs │ └── ReuseCellConfigure.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ReuseCellConfigure.xcscheme └── Target Support Files │ ├── Pods-ReuseCellConfigureSample │ ├── Info.plist │ ├── Pods-ReuseCellConfigureSample-acknowledgements.markdown │ ├── Pods-ReuseCellConfigureSample-acknowledgements.plist │ ├── Pods-ReuseCellConfigureSample-dummy.m │ ├── Pods-ReuseCellConfigureSample-frameworks.sh │ ├── Pods-ReuseCellConfigureSample-resources.sh │ ├── Pods-ReuseCellConfigureSample-umbrella.h │ ├── Pods-ReuseCellConfigureSample.debug.xcconfig │ ├── Pods-ReuseCellConfigureSample.modulemap │ └── Pods-ReuseCellConfigureSample.release.xcconfig │ └── ReuseCellConfigure │ ├── Info.plist │ ├── ReuseCellConfigure-dummy.m │ ├── ReuseCellConfigure-prefix.pch │ ├── ReuseCellConfigure-umbrella.h │ ├── ReuseCellConfigure.modulemap │ └── ReuseCellConfigure.xcconfig ├── ReuseCellConfigureSample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ReuseCellConfigureSample.xcworkspace └── contents.xcworkspacedata └── ReuseCellConfigureSample ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── CollectionView ├── Cells │ ├── CollectionViewCellProtocol.swift │ ├── LeftCollectionViewCell.swift │ ├── LeftCollectionViewCell.xib │ ├── RightCollectionViewCell.swift │ └── RightCollectionViewCell.xib └── CollectionViewController.swift ├── Info.plist ├── TableView ├── Cells │ ├── LeftIconTableViewCell.swift │ ├── LeftIconTableViewCell.xib │ ├── RightIconTableViewCell.swift │ ├── RightIconTableViewCell.xib │ └── TableViewCellProtocol.swift └── TableViewController.swift └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/README.md -------------------------------------------------------------------------------- /ReuseCellConfigure.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigure.podspec -------------------------------------------------------------------------------- /ReuseCellConfigure/ReuseCellConfigure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigure/ReuseCellConfigure.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Podfile -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Podfile.lock -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Local Podspecs/ReuseCellConfigure.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Local Podspecs/ReuseCellConfigure.podspec.json -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Manifest.lock -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ReuseCellConfigure.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/ReuseCellConfigure.xcscheme -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Info.plist -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-acknowledgements.markdown -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-acknowledgements.plist -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-dummy.m -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-frameworks.sh -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-resources.sh -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample-umbrella.h -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample.debug.xcconfig -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample.modulemap -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/Pods-ReuseCellConfigureSample/Pods-ReuseCellConfigureSample.release.xcconfig -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/Info.plist -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure-dummy.m -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure-prefix.pch -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure-umbrella.h -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure.modulemap -------------------------------------------------------------------------------- /ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/Pods/Target Support Files/ReuseCellConfigure/ReuseCellConfigure.xcconfig -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/AppDelegate.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/CollectionViewCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/CollectionViewCellProtocol.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/LeftCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/LeftCollectionViewCell.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/LeftCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/LeftCollectionViewCell.xib -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/RightCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/RightCollectionViewCell.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/RightCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/Cells/RightCollectionViewCell.xib -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/CollectionView/CollectionViewController.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/Info.plist -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/LeftIconTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/LeftIconTableViewCell.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/LeftIconTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/LeftIconTableViewCell.xib -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/RightIconTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/RightIconTableViewCell.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/RightIconTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/RightIconTableViewCell.xib -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/TableViewCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/Cells/TableViewCellProtocol.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/TableView/TableViewController.swift -------------------------------------------------------------------------------- /ReuseCellConfigureSample/ReuseCellConfigureSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/ReuseCellConfigure/HEAD/ReuseCellConfigureSample/ReuseCellConfigureSample/ViewController.swift --------------------------------------------------------------------------------