Fügen Sie Tags/Erwähnungen mithilfe der Textansicht hinzu und erkennen Sie sie.
CocoaPods ist ein Abhängigkeitsmanager für Objective-C und Swift. Sie können es mit dem folgenden Befehl installieren:
$ gem install cocoapods
Um DPTagTextView
mithilfe von CocoaPods in Ihr Xcode-Projekt zu integrieren, geben Sie es in Ihrer Podfile
an:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios , '10.0'
target 'TargetName' do
use_frameworks!
pod 'DPTagTextView'
end
Führen Sie dann den folgenden Befehl aus:
$ pod install
Carthage ist ein dezentraler Abhängigkeitsmanager, der Ihre Abhängigkeiten aufbaut und Ihnen binäre Frameworks bereitstellt.
Sie können Carthage mit Homebrew mit dem folgenden Befehl installieren:
$ brew update
$ brew install carthage
Um DPTagTextView
mithilfe von Carthage in Ihr Xcode-Projekt zu integrieren, geben Sie es in Ihrer Cartfile
an:
github "Datt1994/DPTagTextView"
Führen Sie carthage
aus, um das Framework zu erstellen, und ziehen Sie das Framework ( DPTagTextView.framework
) in Ihr Xcode-Projekt.
Der Swift Package Manager ist ein Tool zur Automatisierung der Verteilung von Swift-Code und ist in den swift
-Compiler integriert.
Um die Bibliothek als Paketabhängigkeit zu Ihrem Xcode-Projekt hinzuzufügen, wählen Sie Datei > Swift-Pakete > Paketabhängigkeit hinzufügen und geben Sie die Repository-URL https://github.com/Datt1994/DPTagTextView.git
ein
Laden Sie das Projekt herunter und kopieren Sie die Datei DPTagTextView.swift
fügen Sie sie in Ihr Projekt ein
?DPTagTextView zur benutzerdefinierten UITextView-Klasse hinzufügen.
Aufstellen
tagTextView . dpTagDelegate = self // set DPTagTextViewDelegate Delegate
tagTextView . setTagDetection ( true ) // true :- detecte tag on tap , false :- Search Tags using mentionSymbol & hashTagSymbol.
tagTextView . mentionSymbol = " @ " // Search start with this mentionSymbol.
tagTextView . hashTagSymbol = " # " // Search start with this hashTagSymbol for hashtagging.
tagTextView . allowsHashTagUsingSpace = true // Add HashTag using space
tagTextView . textViewAttributes = [ NSAttributedString . Key . foregroundColor : UIColor . black ,
NSAttributedString . Key . font : UIFont . systemFont ( ofSize : 15 ) ] // set textview defult text Attributes
tagTextView . mentionTagTextAttributes = [ NSAttributedString . Key . foregroundColor : UIColor . blue ,
NSAttributedString . Key . backgroundColor : UIColor . lightGray ,
NSAttributedString . Key . font : UIFont . boldSystemFont ( ofSize : 15 ) ] // set textview mentionTag text Attributes
tagTextView . hashTagTextAttributes = [ NSAttributedString . Key . foregroundColor : UIColor . red ,
NSAttributedString . Key . backgroundColor : UIColor . lightGray ,
NSAttributedString . Key . font : UIFont . boldSystemFont ( ofSize : 15 ) ] // set textview hashTag text Attributes
//Set pre text and tags
let tag1 = DPTag ( name : " Lorem Ipsum " , range : NSRange ( location : 41 , length : 11 ) )
let tag2 = DPTag ( id : " 567681647 " , name : " suffered " , range : NSRange ( location : 86 , length : 9 ) , data : [ " withHashTag " : " #suffered " ] , isHashTag : true , customTextAttributes : [ NSAttributedString . Key . foregroundColor : UIColor . green , NSAttributedString . Key . backgroundColor : UIColor . black , NSAttributedString . Key . font : UIFont . boldSystemFont ( ofSize : 15 ) ] )
let tag3 = DPTag ( name : " humour " , range : NSRange ( location : 133 , length : 7 ) , isHashTag : true )
tagTextView . setText ( " There are many variations of passages of Lorem Ipsum available, but the majority have #suffered alteration in some form, by injected #humour, or randomised words which don't look even slightly believable. " , arrTags : [ tag1 , tag2 , tag3 ] )
//Clear textview
tagTextView . setText ( nil , arrTags : [ ] )
//Add tag replacing serached string
//tagTextView.addTag(allText: String?, tagText: String, id: String, data: [String : Any], customTextAttributes: [NSAttributedString.Key : Any], isAppendSpace: Bool)
tagTextView . addTag ( tagText : " User Name " )
Methoden delegieren
extension ViewController : DPTagTextViewDelegate {
func dpTagTextView ( _ textView : DPTagTextView , didChangedTagSearchString strSearch : String , isHashTag : Bool ) {
}
func dpTagTextView ( _ textView : DPTagTextView , didInsertTag tag : DPTag ) {
}
func dpTagTextView ( _ textView : DPTagTextView , didRemoveTag tag : DPTag ) {
}
func dpTagTextView ( _ textView : DPTagTextView , didSelectTag tag : DPTag ) {
}
func dpTagTextView ( _ textView : DPTagTextView , didChangedTags arrTags : [ DPTag ] ) {
}
}