Tagging alternatives and similar libraries
Based on the "Text" category.
Alternatively, view Tagging alternatives based on common mentions on social networks and blogs.
-
PhoneNumberKit
A Swift framework for parsing, formatting and validating international phone numbers. Inspired by Google's libphonenumber. -
TwitterTextEditor
A standalone, flexible API that provides a full-featured rich text editor for iOS applications. -
RichEditorView
DISCONTINUED. RichEditorView is a simple, modular, drop-in UIView subclass for Rich Text Editing. -
Atributika
Convert text with HTML tags, links, hashtags, mentions into NSAttributedString. Make them clickable with UILabel drop-in replacement. -
Mustard
🌭 Mustard is a Swift library for tokenizing strings when splitting by whitespace doesn't cut it. -
PrediKit
An NSPredicate DSL for iOS, OSX, tvOS, & watchOS. Inspired by SnapKit and lovingly written in Swift. -
AttributedTextView
Easiest way to create an attributed UITextView (with support for multiple links and from html) -
OysterKit
OysterKit is a framework that provides a native Swift scanning, lexical analysis, and parsing capabilities. In addition it provides a language that can be used to rapidly define the rules used by OysterKit called STLR
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Tagging or a related project?
README
Tagging
A TextView that provides easy to use tagging feature for Mention or Hashtag.
Introduction
Tagging is a UIView that encloses a TextView that contains an algorithm for tagging.
If you're worried about implementing Mention
or Hashtag
in your app, you can easily implement them using the library.
Getting Started
Add
Tagging
to the view as a subview.Set the list that you want to tag and tag symbol to
Tagging
.tagging.symbol = "#" tagging.tagableList = ["DOOMFIST", "GENJI", "MCCREE", "PHARAH", "REAPER", "SOLDIER:76", "SOMBRA", "TRACER", "BASTION", "HANZO", "JUNKRAT", "MEI", "TORBJORN", "WIDOWMAKER", "D.VA", "ORISA", "REINHARDT", "ROADHOG", "WINSTON", "ZARYA", "ANA", "BRIGITTE", "LUCIO", "MERCY", "MOIRA", "SYMMETRA", "ZENYATTA"]
Implement TaggingDataSource on the class that added the
Tagging
.tagging.dataSource = self
Get tagable list and tagged list through
TaggingDataSource
.func tagging(_ tagging: Tagging, didChangedTagableList tagableList: [String]) { matchedList = tagableList }
func tagging(_ tagging: Tagging, didChangedTaggedList taggedList: [TaggingModel]) { self.taggedList = taggedList }
## Usage
#### Tagging Property
| Property | Type | Description |
| --- | --- | --- |
| `cornerRadius` | `CGFloat` | Corner radius |
| `borderWidth` | `CGFloat` | Border width |
| `borderColor` | `CGColor` | Border color |
| `textInset` | `UIEdgeInsets` | Text inset |
| `backgroundColor` | `UIColor` | Background color |
| `symbol` | `String` | Tagging symbol |
| `tagableList` | `[String]` | Tagable list |
| `defaultAttributes` | `[NSAttributedStringKey: Any]` | Default attributes for all range attributedText of Textview |
| `symbolAttributes` | `[NSAttributedStringKey: Any]` | Aattributes for symbol text |
| `taggedAttributes` | `[NSAttributedStringKey: Any]` | Attributes for tagged text |
## Installation
#### CocoaPods (iOS 8+)
```ruby
platform :ios, '8.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Tagging'
end
Carthage (iOS 8+)
github "k-lpmg/Tagging"
LICENSE
These works are available under the MIT license. See the [LICENSE][license] file for more info.
*Note that all licence references and agreements mentioned in the Tagging README section above
are relevant to that project's source code only.