{"id":32312302,"url":"https://github.com/sanjaysinh-chauhan/ssctaglistview","last_synced_at":"2025-10-23T09:54:51.587Z","repository":{"id":56921956,"uuid":"112175697","full_name":"sanjaysinh-Chauhan/SSCTaglistView","owner":"sanjaysinh-Chauhan","description":"      Customizable iOS tag list view, in Swift.","archived":false,"fork":false,"pushed_at":"2020-07-07T15:37:54.000Z","size":2644,"stargazers_count":55,"open_issues_count":2,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-10-23T09:54:44.758Z","etag":null,"topics":["awesometopic","cocoapods","collectionview","high-performance","simple","swift","tag","tagging","taglistview","tags"],"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/sanjaysinh-Chauhan.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-11-27T09:29:39.000Z","updated_at":"2023-05-16T14:36:00.000Z","dependencies_parsed_at":"2022-08-21T04:50:12.562Z","dependency_job_id":null,"html_url":"https://github.com/sanjaysinh-Chauhan/SSCTaglistView","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/sanjaysinh-Chauhan/SSCTaglistView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjaysinh-Chauhan%2FSSCTaglistView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjaysinh-Chauhan%2FSSCTaglistView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjaysinh-Chauhan%2FSSCTaglistView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjaysinh-Chauhan%2FSSCTaglistView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sanjaysinh-Chauhan","download_url":"https://codeload.github.com/sanjaysinh-Chauhan/SSCTaglistView/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanjaysinh-Chauhan%2FSSCTaglistView/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280598940,"owners_count":26357977,"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-10-23T02:00:06.710Z","response_time":142,"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":["awesometopic","cocoapods","collectionview","high-performance","simple","swift","tag","tagging","taglistview","tags"],"created_at":"2025-10-23T09:54:50.152Z","updated_at":"2025-10-23T09:54:51.580Z","avatar_url":"https://github.com/sanjaysinh-Chauhan.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SSCTaglistView\n\u003e Simple customizable iOS tag list view, in Swift.\n\n[![Swift Version][swift-image]][swift-url]\n[![Build Status][travis-image]][travis-url]\n[![License][license-image]][license-url]\n[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/EZSwiftExtensions.svg)](https://img.shields.io/cocoapods/v/LFAlertController.svg)\n[![Platform](https://img.shields.io/cocoapods/p/LFAlertController.svg?style=flat)](http://cocoapods.org/pods/LFAlertController)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n\n\n![Alt text](https://github.com/sanjaysinh-Chauhan/SSCTaglistView/blob/master/Features.gif?raw=true)\n## Features\n\n- [x] Simple and highly customizable iOS tag list view, in Swift.\n- [x] Supports @IBDesignable.\n- [x] Adds array of tags to view.\n- [x] Add single tag to list.\n- [x] Add single tag to specific index.\n- [x] Remove all tags from taglist view.\n- [x] Remove tags from specific index.\n- [x] Directly copy available tags from taglist view\n- [x] Directly copy selected tags from taglist view.\n- [x] Directly copy unselected tags from taglist view.\n## Requirements\n\n- iOS 10.0+\n- Xcode 9.0\n\n## Installation\n\n#### CocoaPods\nYou can use [CocoaPods](http://cocoapods.org/) to install `SSCTaglistView` by adding it to your `Podfile`:\n\n```ruby\nplatform :ios, '10.0'\nuse_frameworks!\npod 'SSCTaglistView'\n```\n\nTo get the full benefits import `YourLibrary` wherever you import UIKit\n\n``` swift\nimport UIKit\nimport SSCTaglistView\n```\n\n#### Manually\n1. Download and drop ```TaglistCollection.swift``` ```TagCollectionCell.swift``` ```Theme.swift```  ```CloseButton.swift``` ```TagCollectionCell.xib``` in your project.  \n2. Congratulations!  \n\n## Usage example\n\n\nAdd view in storyboard and apply class TaglistCollection. Here tagListView is outlet from storyboard\n\n```swift\nimport SSCTaglistView\n```\n### Create outlet of that view. \n### Add single tags to view using \n```swift\n    tagListView.appendTag(tagName: #Stringtagname)\n```\n### Add single tags to specific index \n```swift\n    self.appendTag(tagName: #stringTagName, atIndex: #Index)\n```    \n### Add array of tags to view using \n```swift\n    tagListView.appendTag(tagNamelist: #arrayOfString)\n```    \n### Remove all tags from view\n```swift\n    tagListView.removeAllTags()\n```    \n### Remove all tag from specific index\n```swift\n    tagListView.removeTagAt(indexPath: #IndexOfTag)\n```    \n### Copy all tags from taglistView\n```swift\n    tagListView.copyAllTags() will return array of tags.\n```    \n### Copy selected tags from taglistView.\n```swift\n    tagListView.copySelectedTags() will return array of tags.\n```    \n### Copy unselected tags from taglistView.\n```swift\n    tagListView.copyUnselectedTags() will return array of tags.\n```\n\n\n## Contribute\n\nWe would love you for the contribution to **SSCTaglistView**, check the ``LICENSE`` file for more info.\n\n## Meta\n\nDistributed under the MIT license. See ``LICENSE`` for more information.\n\n[https://github.com/sanjaysinh-Chauhan/SSCTaglistView](https://github.com/sanjaysinh-Chauhan)\n\n[swift-image]:https://img.shields.io/badge/swift-4.0-orange.svg\n[swift-url]: https://swift.org/\n[license-image]: https://img.shields.io/badge/License-MIT-blue.svg\n[license-url]: LICENSE\n[travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square\n[travis-url]: https://travis-ci.org/dbader/node-datadog-metrics\n[codebeat-image]: https://codebeat.co/badges/c19b47ea-2f9d-45df-8458-b2d952fe9dad\n[codebeat-url]: https://codebeat.co/projects/github-com-vsouza-awesomeios-com\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanjaysinh-chauhan%2Fssctaglistview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanjaysinh-chauhan%2Fssctaglistview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanjaysinh-chauhan%2Fssctaglistview/lists"}