{"id":18906065,"url":"https://github.com/kgellci/quicktable","last_synced_at":"2026-03-05T03:30:20.153Z","repository":{"id":62451732,"uuid":"91058439","full_name":"kgellci/QuickTable","owner":"kgellci","description":"A quicker way to build UITableViews","archived":false,"fork":false,"pushed_at":"2017-05-14T05:09:10.000Z","size":167,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-31T11:02:25.186Z","etag":null,"topics":["swift","uitableview"],"latest_commit_sha":null,"homepage":null,"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/kgellci.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-05-12T06:24:06.000Z","updated_at":"2017-10-29T03:14:24.000Z","dependencies_parsed_at":"2022-11-01T23:46:18.456Z","dependency_job_id":null,"html_url":"https://github.com/kgellci/QuickTable","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kgellci%2FQuickTable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kgellci%2FQuickTable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kgellci%2FQuickTable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kgellci%2FQuickTable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kgellci","download_url":"https://codeload.github.com/kgellci/QuickTable/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239889026,"owners_count":19713702,"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","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":["swift","uitableview"],"created_at":"2024-11-08T09:14:41.500Z","updated_at":"2026-03-05T03:30:20.103Z","avatar_url":"https://github.com/kgellci.png","language":"Swift","readme":"# QuickTable\n\n[![CI Status](http://img.shields.io/travis/kgellci/QuickTable.svg?style=flat)](https://travis-ci.org/kgellci/QuickTable)\n[![Version](https://img.shields.io/cocoapods/v/QuickTable.svg?style=flat)](http://cocoapods.org/pods/QuickTable)\n[![License](https://img.shields.io/cocoapods/l/QuickTable.svg?style=flat)](http://cocoapods.org/pods/QuickTable)\n[![Platform](https://img.shields.io/cocoapods/p/QuickTable.svg?style=flat)](http://cocoapods.org/pods/QuickTable)\n![Swift 3.1](https://img.shields.io/badge/Swift-3.0-orange.svg)\n\n## Warning\n\nCurrently developing to a stable version. Use as an experiment for now.\n\n## Usage\n\nQuickTable is a subclass of UITableView, you can set it up via interface builder or in code.  No need to worry about UItableViewDelegate and DataSource!\n\n```swift\nlet tableView = QuickTable()\ntableView.register(UITableViewCell.self, forCellReuseIdentifier: \"MyTableViewCell\")\n```\n\nCreate a row you want to display, add it to a section and set the section to the QuickTable\n\n```swift\nlet row = QuickRow(reuseIdentifier: \"MyTableViewCell\", styleBlock: { (cell) in\n    cell.textLabel?.text = \"Hello World!\"\n})\n\nlet section = QuickSection(quickRowModels: [row])\n```\n\nYou can style the section by passing options\n\n```swift\nlet secondSection = QuickSection(options: [.headerTitle(\"The Header\"), .footerTitle(\"The Footer\")])\n```\n\nTapping on a row is handled via a block\n\n```swift\nrow.selectionBlock = { (cell) -\u003e Bool in\n    // The row was selected do something!\n\n    // return if the cell should auto deselect\n    return true\n}\n```\n\nYou can use automatic height computation or define the height on a section or row level\n\n```swift\nsection.rowHeight = 60\n\n// OR\n\nrow.computeRowHeightBlock { (row) -\u003e CGFloat in\n    return 100\n}\n\n```\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Requirements\n\nSwift 3.1\n\n## Installation\n\nQuickTable is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"QuickTable\"\n```\n\n## Author\n\nKris Gellci [![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://www.twitter.com/kgellci)\n\n## License\n\nQuickTable is available under the MIT license. See the LICENSE file for more info.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkgellci%2Fquicktable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkgellci%2Fquicktable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkgellci%2Fquicktable/lists"}