{"id":19688172,"url":"https://github.com/behrad-kzm/bekmulticelltable","last_synced_at":"2026-04-14T07:32:50.119Z","repository":{"id":164166870,"uuid":"231657288","full_name":"behrad-kzm/BEKMultiCellTable","owner":"behrad-kzm","description":"[deprecated]A table view based on MVVM with a SUPER easy use case.","archived":false,"fork":false,"pushed_at":"2020-04-22T18:56:28.000Z","size":2553,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-29T23:11:41.757Z","etag":null,"topics":["bek","cell","cocoapods","generic","ios","multi","mvvm","uitableview"],"latest_commit_sha":null,"homepage":"","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/behrad-kzm.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-03T20:07:45.000Z","updated_at":"2020-06-10T21:44:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"6ce3389c-d90f-41a8-a67d-7e3ce44cddf2","html_url":"https://github.com/behrad-kzm/BEKMultiCellTable","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/behrad-kzm/BEKMultiCellTable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/behrad-kzm%2FBEKMultiCellTable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/behrad-kzm%2FBEKMultiCellTable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/behrad-kzm%2FBEKMultiCellTable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/behrad-kzm%2FBEKMultiCellTable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/behrad-kzm","download_url":"https://codeload.github.com/behrad-kzm/BEKMultiCellTable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/behrad-kzm%2FBEKMultiCellTable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31786842,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bek","cell","cocoapods","generic","ios","multi","mvvm","uitableview"],"created_at":"2024-11-11T18:37:11.864Z","updated_at":"2026-04-14T07:32:50.102Z","avatar_url":"https://github.com/behrad-kzm.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# BEKMultiCellTable\n\n(deprecated) Use BEKListKit instead of this repo.\n\nA generic table view based on MVVM that allows you to add multiple cell types at runtime in a single line of code.\n\u003cimg src=\"https://github.com/behrad-kzm/BEKDesing/blob/master/Images/BEKHeader.png\"\u003e\n\n[![CI Status](http://img.shields.io/travis/popwarsweet/JellySlider.svg?style=flat)](https://travis-ci.org/popwarsweet/JellySlider)\n[![License](https://img.shields.io/cocoapods/l/JellySlider.svg?style=flat)](http://cocoapods.org/pods/JellySlider)\n[![Platform](https://img.shields.io/cocoapods/p/JellySlider.svg?style=flat)](http://cocoapods.org/pods/JellySlider)\n\n It doesn't need to implement the UITableViewDataSource inside your table view class. It also compatible with XIB contain cells or the programmatically implemented cells.\n## Demo\n\u003cimg src=\"Preview.gif\" height=\"600\"\u003e\n\n## Example\n\n__usage:__\n\n__Table Configuration:__\n\nSet BEKMultiCellTable to the table's class.\n\n```swift\n\n    @IBOutlet weak var tableView: BEKMultiCellTable!\n\n```\n\n__TableCell Configuration:__\nMake your custom cell confirms the BEKBindableCell protocol.\n\n```swift\n\n  extension MyCustomCell: BEKBindableCell {    \n    typealias ViewModeltype = NewContactViewModel\n    func bindData(withViewModel viewModel: NewContactViewModel) {\n        titleLabel.text = viewModel.nameText\n        profileImage.image = viewModel.profileImage\n        newProfileImage.image = viewModel.extraImage\n    }\n}\n\n```\n\n__Create and push BEKGenericCell:__\n\nCreate a BEKGenericCell with a UITableView base Class and pass it's viewModel.\n```swift\n\n  tableView.push(cell: BEKGenericCell\u003cMyCustomCell\u003e(viewModel: viewModel))\n\n```\n__note:__\n\nIf your table view cell hasn't XIB file just pass nil as the nib parameter.\n\n```swift\n\n  tableView.push(cell: BEKGenericCell\u003cMyCustomCell\u003e(viewModel: viewModel, withNib: nil))\n\n```\nthis will register your class agaist nib to the table.\n\n## Installation\n```\n\n  pod 'BEKMultiCellTable', :git =\u003e 'https://github.com/behrad-kzm/BEKMultiCellTable.git'\n\n```\n\n\n## Author\nBehrad Kazemi, Behradkzm@gmail.com, bekapps.com\n\u003ca href=\"https://bekapps.com\"\u003e Visit Web Site \u003c/a\u003e\n## License\n\nBEKCurveTabbar is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbehrad-kzm%2Fbekmulticelltable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbehrad-kzm%2Fbekmulticelltable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbehrad-kzm%2Fbekmulticelltable/lists"}