{"id":2832,"url":"https://github.com/bcylin/QuickTableViewController","last_synced_at":"2025-08-06T16:31:53.837Z","repository":{"id":3344599,"uuid":"41998249","full_name":"bcylin/QuickTableViewController","owner":"bcylin","description":"A simple way to create a UITableView for settings in Swift.","archived":false,"fork":false,"pushed_at":"2023-11-28T21:58:13.000Z","size":1744,"stargazers_count":557,"open_issues_count":0,"forks_count":64,"subscribers_count":11,"default_branch":"develop","last_synced_at":"2025-08-01T02:44:46.870Z","etag":null,"topics":["ios","radio-buttons","settings","swift","switch-control","tableview"],"latest_commit_sha":null,"homepage":"https://bcylin.github.io/QuickTableViewController","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bcylin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"bcylin"}},"created_at":"2015-09-06T10:15:22.000Z","updated_at":"2025-07-11T06:49:51.000Z","dependencies_parsed_at":"2024-01-29T18:06:56.660Z","dependency_job_id":null,"html_url":"https://github.com/bcylin/QuickTableViewController","commit_stats":{"total_commits":560,"total_committers":15,"mean_commits":"37.333333333333336","dds":"0.19821428571428568","last_synced_commit":"b7d1c854e5d5892843db55aa0cc673eddc7f1333"},"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/bcylin/QuickTableViewController","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2FQuickTableViewController","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2FQuickTableViewController/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2FQuickTableViewController/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2FQuickTableViewController/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bcylin","download_url":"https://codeload.github.com/bcylin/QuickTableViewController/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcylin%2FQuickTableViewController/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269112567,"owners_count":24361999,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-06T02:00:09.910Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","radio-buttons","settings","swift","switch-control","tableview"],"created_at":"2024-01-05T20:16:24.007Z","updated_at":"2025-08-06T16:31:53.442Z","avatar_url":"https://github.com/bcylin.png","language":"Swift","readme":"# QuickTableViewController\n\n[![GitHub Actions](https://github.com/bcylin/QuickTableViewController/workflows/CI/badge.svg)](https://github.com/bcylin/QuickTableViewController/actions)\n[![Codecov](https://img.shields.io/codecov/c/github/bcylin/QuickTableViewController)](https://codecov.io/gh/bcylin/QuickTableViewController)\n[![Carthage compatible](https://img.shields.io/badge/carthage-compatible-green.svg)](https://github.com/Carthage/Carthage)\n[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/QuickTableViewController.svg)](https://cocoapods.org/pods/QuickTableViewController)\n[![Platform](https://img.shields.io/cocoapods/p/QuickTableViewController?label=docs)](https://bcylin.github.io/QuickTableViewController)\n![Swift 5](https://img.shields.io/badge/Swift-5-orange.svg)\n\nA simple way to create a table view for settings.\n\n\u003cimg src=\"https://raw.githubusercontent.com/bcylin/QuickTableViewController/develop/Documentation/Screenshot.png\" width=\"320\"\u003e\u003c/img\u003e\n\n## Sunsetting\n\nℹ️ If your deployment target is iOS 13 or above, please consider using [SwiftUI](#SwiftUI).\n\nQuickTableViewController was designed to show static table contents when it was around iOS 8 and Swift 1.2. Over the past few iterations, a couple more controls were added but it still has its [limitations](https://github.com/bcylin/QuickTableViewController/tree/develop/Documentation/README.md#limitations). After the introduction of [List](https://developer.apple.com/documentation/swiftui/list) and [Form](https://developer.apple.com/documentation/swiftui/form) in iOS 13, SwiftUI has become a better solution for both static and dynamic table views.\n\nQuickTableViewController will stay at the latest released version [`v1.3.1`](https://github.com/bcylin/QuickTableViewController/tree/v1.3.1) from now on. Future updates will be mostly experimental. To use QuickTableViewController in UIKit, please see:\n\n- [QuickTableViewController documentation](https://bcylin.github.io/QuickTableViewController)\n- [Pre-release version](https://github.com/bcylin/QuickTableViewController/tree/develop/Documentation)\n\n## SwiftUI\n\nThe same settings layout can be implemented in SwiftUI and integrated into UIKit using UIHostingController. For more, please see [Example-iOS/SwiftUI](https://github.com/bcylin/QuickTableViewController/tree/develop/Example-iOS/SwiftUI).\n\n```swift\nvar body: some View {\n    Form {\n        Section(header: Text(\"Switch\")) {\n            Toggle(isOn: $viewModel.flag1) {\n                subtitleCellStyle(title: \"Setting 1\", subtitle: \"Example subtitle\")\n                    .leadingIcon(\"globe\")\n            }\n            Toggle(isOn: $viewModel.flag2) {\n                subtitleCellStyle(title: \"Setting 2\", subtitle: nil)\n                    .leadingIcon(\"clock.arrow.circlepath\")\n            }\n        }\n\n        Section(header: Text(\"Tap Action\")) {\n            Button {\n                viewModel.performTapAction()\n            } label: {\n                Text(\"Tap action\").frame(maxWidth: .infinity)\n            }\n        }\n\n        Section(header: Text(\"Cell Style\"), footer: Text(\"CellStyle.value2 is not implemented\")) {\n            subtitleCellStyle(title: \"CellStyle.default\", subtitle: nil)\n                .leadingIcon(\"gear\")\n            subtitleCellStyle(title: \"CellStyle.default\", subtitle: \".subtitle\")\n                .leadingIcon(\"globe\")\n            value1CellStyle(title: \"CellStyle\", detailText: \".value1\")\n                .leadingIcon(\"clock.arrow.circlepath\")\n                .navigationFlow { viewModel.startNavigationFlow() }\n        }\n\n        Section(header: Text(\"Radio Button\")) {\n            ForEach(SettingsViewModel.Option.allCases) { option in\n                checkmarkCellStyle(with: option, isSelected: viewModel.isOptionSelected(option))\n            }\n        }\n    }\n}\n```\n## License\n\nQuickTableViewController is released under the [MIT license](https://github.com/bcylin/QuickTableViewController/tree/master/LICENSE). Image source: [iconmonstr](https://iconmonstr.com/license)\n","funding_links":["https://github.com/sponsors/bcylin"],"categories":["UI","Libs","Swift","UI [🔝](#readme)"],"sub_categories":["Table View / Collection View","UI","Layout","Other free courses"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcylin%2FQuickTableViewController","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbcylin%2FQuickTableViewController","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcylin%2FQuickTableViewController/lists"}