├── .github └── workflows │ └── main.yml ├── .gitignore ├── .swift-version ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── Static.xcscheme ├── Example ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── Settings.imageset │ │ ├── Contents.json │ │ ├── Settings.png │ │ ├── Settings@2x.png │ │ └── Settings@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── CustomTableViewCell.swift ├── Info.plist ├── NibTableViewCell.swift ├── NibTableViewCell.xib ├── ViewController.swift └── WindowController.swift ├── LICENSE ├── Package.swift ├── Readme.markdown ├── Sources └── Static │ ├── ButtonCell.swift │ ├── Cell.swift │ ├── DataSource.swift │ ├── Row.swift │ ├── Section.swift │ ├── SegmentedControlAccessory.swift │ ├── SubtitleCell.swift │ ├── SwitchAccessory.swift │ ├── TableViewController.swift │ ├── Value1Cell.swift │ └── Value2Cell.swift ├── Static.podspec ├── Static.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Static-iOS.xcscheme │ └── StaticExample.xcscheme ├── Support ├── Info.plist ├── Static.h └── Tests-Info.plist ├── Tests └── StaticTests │ ├── DataSourceTests.swift │ ├── RowTests.swift │ └── SectionTests.swift └── docs └── static.png /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0.0 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Static.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Static.xcscheme -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Assets.xcassets/Settings.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Settings.imageset/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Assets.xcassets/Settings.imageset/Settings.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/Settings.imageset/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Assets.xcassets/Settings.imageset/Settings@2x.png -------------------------------------------------------------------------------- /Example/Assets.xcassets/Settings.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Assets.xcassets/Settings.imageset/Settings@3x.png -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/CustomTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/CustomTableViewCell.swift -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/NibTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/NibTableViewCell.swift -------------------------------------------------------------------------------- /Example/NibTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/NibTableViewCell.xib -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/WindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Example/WindowController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Package.swift -------------------------------------------------------------------------------- /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Readme.markdown -------------------------------------------------------------------------------- /Sources/Static/ButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/ButtonCell.swift -------------------------------------------------------------------------------- /Sources/Static/Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/Cell.swift -------------------------------------------------------------------------------- /Sources/Static/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/DataSource.swift -------------------------------------------------------------------------------- /Sources/Static/Row.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/Row.swift -------------------------------------------------------------------------------- /Sources/Static/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/Section.swift -------------------------------------------------------------------------------- /Sources/Static/SegmentedControlAccessory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/SegmentedControlAccessory.swift -------------------------------------------------------------------------------- /Sources/Static/SubtitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/SubtitleCell.swift -------------------------------------------------------------------------------- /Sources/Static/SwitchAccessory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/SwitchAccessory.swift -------------------------------------------------------------------------------- /Sources/Static/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/TableViewController.swift -------------------------------------------------------------------------------- /Sources/Static/Value1Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/Value1Cell.swift -------------------------------------------------------------------------------- /Sources/Static/Value2Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Sources/Static/Value2Cell.swift -------------------------------------------------------------------------------- /Static.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Static.podspec -------------------------------------------------------------------------------- /Static.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Static.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Static.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Static.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Static.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Static.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Static.xcodeproj/xcshareddata/xcschemes/Static-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Static.xcodeproj/xcshareddata/xcschemes/Static-iOS.xcscheme -------------------------------------------------------------------------------- /Static.xcodeproj/xcshareddata/xcschemes/StaticExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Static.xcodeproj/xcshareddata/xcschemes/StaticExample.xcscheme -------------------------------------------------------------------------------- /Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Support/Info.plist -------------------------------------------------------------------------------- /Support/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Support/Static.h -------------------------------------------------------------------------------- /Support/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Support/Tests-Info.plist -------------------------------------------------------------------------------- /Tests/StaticTests/DataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Tests/StaticTests/DataSourceTests.swift -------------------------------------------------------------------------------- /Tests/StaticTests/RowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Tests/StaticTests/RowTests.swift -------------------------------------------------------------------------------- /Tests/StaticTests/SectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/Tests/StaticTests/SectionTests.swift -------------------------------------------------------------------------------- /docs/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/venmo/Static/HEAD/docs/static.png --------------------------------------------------------------------------------