├── .github ├── funding.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── TOInsetGroupedTableView.podspec ├── TOInsetGroupedTableView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── TOInsetGroupedTableView.xcscheme │ └── TOInsetGroupedTableViewTests.xcscheme ├── TOInsetGroupedTableView ├── TOInsetGroupedTableView.h ├── TOInsetGroupedTableView.m └── include │ ├── TOInsetGroupedTableView.h │ └── module.modulemap ├── TOInsetGroupedTableViewExample ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── TOAppDelegate.h ├── TOAppDelegate.m ├── TOViewController.h ├── TOViewController.m └── main.m ├── TOInsetGroupedTableViewTests ├── Info.plist └── TOInsetGroupedTableViewTests.m └── screenshot.jpg /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: timoliver 2 | custom: https://tim.dev/paypal 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/README.md -------------------------------------------------------------------------------- /TOInsetGroupedTableView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView.podspec -------------------------------------------------------------------------------- /TOInsetGroupedTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TOInsetGroupedTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TOInsetGroupedTableView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TOInsetGroupedTableView.xcodeproj/xcshareddata/xcschemes/TOInsetGroupedTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView.xcodeproj/xcshareddata/xcschemes/TOInsetGroupedTableView.xcscheme -------------------------------------------------------------------------------- /TOInsetGroupedTableView.xcodeproj/xcshareddata/xcschemes/TOInsetGroupedTableViewTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView.xcodeproj/xcshareddata/xcschemes/TOInsetGroupedTableViewTests.xcscheme -------------------------------------------------------------------------------- /TOInsetGroupedTableView/TOInsetGroupedTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView/TOInsetGroupedTableView.h -------------------------------------------------------------------------------- /TOInsetGroupedTableView/TOInsetGroupedTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableView/TOInsetGroupedTableView.m -------------------------------------------------------------------------------- /TOInsetGroupedTableView/include/TOInsetGroupedTableView.h: -------------------------------------------------------------------------------- 1 | ../TOInsetGroupedTableView.h -------------------------------------------------------------------------------- /TOInsetGroupedTableView/include/module.modulemap: -------------------------------------------------------------------------------- 1 | module TOInsetGroupedTableView { 2 | umbrella ".." 3 | export * 4 | } 5 | -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/Info.plist -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/TOAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/TOAppDelegate.h -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/TOAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/TOAppDelegate.m -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/TOViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/TOViewController.h -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/TOViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/TOViewController.m -------------------------------------------------------------------------------- /TOInsetGroupedTableViewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewExample/main.m -------------------------------------------------------------------------------- /TOInsetGroupedTableViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewTests/Info.plist -------------------------------------------------------------------------------- /TOInsetGroupedTableViewTests/TOInsetGroupedTableViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/TOInsetGroupedTableViewTests/TOInsetGroupedTableViewTests.m -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TOInsetGroupedTableView/HEAD/screenshot.jpg --------------------------------------------------------------------------------