स्विफ्ट के साथ जिम्मेदार पाठ पर टैप का पता लगाना
कभी-कभी शुरुआती लोगों के लिए यह जानना थोड़ा कठिन होता है कि चीजों को कैसे सेट किया जाए (यह मेरे लिए वैसे भी था), इसलिए यह उदाहरण थोड़ा भरा हुआ है।
UITextView
अपने प्रोजेक्ट में जोड़ें
आउटलेट
नाम वाले आउटलेट UITextView
के ViewController
साथ कनेक्ट करें textView
।
कस्टम विशेषता
हम एक एक्सटेंशन बनाकर एक कस्टम विशेषता बनाने जा रहे हैं ।
नोट: यह चरण तकनीकी रूप से वैकल्पिक है, लेकिन यदि आप ऐसा नहीं करते हैं तो आपको मानक विशेषता का उपयोग करने के लिए अगले भाग में कोड को संपादित करने की आवश्यकता होगी NSAttributedString.Key.foregroundColor
। एक कस्टम विशेषता का उपयोग करने का लाभ यह है कि आप परिभाषित पाठ श्रेणी में उन मूल्यों को परिभाषित कर सकते हैं जिन्हें आप संग्रहीत करना चाहते हैं।
फ़ाइल> नई> फ़ाइल ...> iOS> स्रोत> स्विफ्ट फ़ाइल के साथ एक नई स्विफ्ट फ़ाइल जोड़ें । इसे आप जो चाहें कह सकते हैं। मैं अपना NSAttributedStringKey + CustomAttribute.swift कह रहा हूं ।
निम्नलिखित कोड में पेस्ट करें:
import Foundation
extension NSAttributedString.Key {
static let myAttributeName = NSAttributedString.Key(rawValue: "MyCustomAttribute")
}
कोड
निम्न के साथ ViewController.swift में कोड बदलें। ध्यान दें UIGestureRecognizerDelegate
।
import UIKit
class ViewController: UIViewController, UIGestureRecognizerDelegate {
@IBOutlet weak var textView: UITextView!
override func viewDidLoad() {
super.viewDidLoad()
// Create an attributed string
let myString = NSMutableAttributedString(string: "Swift attributed text")
// Set an attribute on part of the string
let myRange = NSRange(location: 0, length: 5) // range of "Swift"
let myCustomAttribute = [ NSAttributedString.Key.myAttributeName: "some value"]
myString.addAttributes(myCustomAttribute, range: myRange)
textView.attributedText = myString
// Add tap gesture recognizer to Text View
let tap = UITapGestureRecognizer(target: self, action: #selector(myMethodToHandleTap(_:)))
tap.delegate = self
textView.addGestureRecognizer(tap)
}
@objc func myMethodToHandleTap(_ sender: UITapGestureRecognizer) {
let myTextView = sender.view as! UITextView
let layoutManager = myTextView.layoutManager
// location of tap in myTextView coordinates and taking the inset into account
var location = sender.location(in: myTextView)
location.x -= myTextView.textContainerInset.left;
location.y -= myTextView.textContainerInset.top;
// character index at tap location
let characterIndex = layoutManager.characterIndex(for: location, in: myTextView.textContainer, fractionOfDistanceBetweenInsertionPoints: nil)
// if index is valid then do something.
if characterIndex < myTextView.textStorage.length {
// print the character index
print("character index: \(characterIndex)")
// print the character at the index
let myRange = NSRange(location: characterIndex, length: 1)
let substring = (myTextView.attributedText.string as NSString).substring(with: myRange)
print("character at index: \(substring)")
// check if the tap location has a certain attribute
let attributeName = NSAttributedString.Key.myAttributeName
let attributeValue = myTextView.attributedText?.attribute(attributeName, at: characterIndex, effectiveRange: nil)
if let value = attributeValue {
print("You tapped on \(attributeName.rawValue) and the value is: \(value)")
}
}
}
}
अब यदि आप "स्विफ्ट" के "डब्ल्यू" पर टैप करते हैं, तो आपको निम्नलिखित परिणाम प्राप्त करने चाहिए:
character index: 1
character at index: w
You tapped on MyCustomAttribute and the value is: some value
टिप्पणियाँ
- यहां मैंने एक कस्टम विशेषता का उपयोग किया है, लेकिन यह आसानी से हो सकता है
NSAttributedString.Key.foregroundColor
(पाठ का रंग) जिसका मूल्य है UIColor.green
।
- पूर्व में पाठ दृश्य संपादन योग्य या चयन योग्य नहीं हो सकता था, लेकिन स्विफ्ट 4.2 के लिए मेरे अद्यतन उत्तर में यह ठीक काम करता प्रतीत होता है कि ये चुने गए हैं या नहीं।
आगे के अध्ययन
यह उत्तर इस प्रश्न के कई अन्य उत्तरों पर आधारित था। इनके अलावा, यह भी देखें