Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexruperez/rrtagcontroller
:flashlight: RRTagController allows user to select tag and create new one.
https://github.com/alexruperez/rrtagcontroller
swift swift-4 swift4 tag tagger tagging tags
Last synced: about 2 months ago
JSON representation
:flashlight: RRTagController allows user to select tag and create new one.
- Host: GitHub
- URL: https://github.com/alexruperez/rrtagcontroller
- Owner: alexruperez
- License: mit
- Fork: true (remirobert/RRTagController)
- Created: 2018-02-16T12:01:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-02-21T14:45:11.000Z (over 6 years ago)
- Last Synced: 2024-09-28T22:22:18.287Z (about 2 months ago)
- Topics: swift, swift-4, swift4, tag, tagger, tagging, tags
- Language: Swift
- Homepage:
- Size: 723 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Allows the user to make a choice among predefined tags. It should also be the opportunity to create new ones. It can cancel or, validate if at least one choice was made.
RRTagController is a subClass of an UIViewController. It's very easy to customize.
## Usage
Only one line of code enough to use it :```swift
let tag = ["Albanie", "Allemagne", "Andorre", "Autriche-Hongrie", "Belgique", "Bulgarie", "Danemark", "Espagne", "France", "Grèce", "Italie", "Liechtenstein", "Luxembourg", "Monaco", "Monténégro", "Norvège", "Pays-Bas", "Portugal", "Roumanie", "Royaume-Uni", "Russie", "Saint-Marin", "Serbie", "Suède", "Suisse"]RRTagController.displayTagController(self, tag, blockFinish: { (selectedTags, unSelectedTags) in
}) {
}
```