Ricerca…


Cambia il testo

veloce

textView.text = "Hello, world!"

Objective-C:

textView.text = @"Hello, world!";

Imposta il testo attribuito

// Modify some of the attributes of the attributed string.
let attributedText = NSMutableAttributedString(attributedString: textView.attributedText!)

// Use NSString so the result of rangeOfString is an NSRange.
let text = textView.text! as NSString

// Find the range of each element to modify.
let tintedRange = text.range(of: NSLocalizedString("tinted", comment: ""))
let highlightedRange = text.range(of: NSLocalizedString("highlighted", comment: ""))

// Add tint.
attributedText.addAttribute(NSForegroundColorAttributeName, value: UIColor.blue, range: tintedRange)

// Add highlight.
attributedText.addAttribute(NSBackgroundColorAttributeName, value: UIColor.yellow, range: highlightedRange)

textView.attributedText = attributedText

Cambia l'allineamento del testo

veloce

textView.textAlignment = .left

Objective-C

textView.textAlignment = NSTextAlignmentLeft;

UITextViewDelegate metodi

Risposta alle notifiche di modifica

  • textViewShouldBeginEditing(_:)
  • textViewDidBeginEditing(_:)
  • textViewShouldEndEditing(_:)
  • textViewDidEndEditing(_:)

Risposta alle modifiche del testo

  • textView(_:shouldChangeTextIn:replacementText:)
  • textViewDidChange(_:)

Risposta all'URL

  • textView(_: UITextView, shouldInteractWithURL: NSURL, inRange: NSRange) -> Bool

Cambia carattere

veloce

//System Font
textView.font = UIFont.systemFont(ofSize: 12)

//Font of your choosing
textView.font = UIFont(name: "Font Name", size: 12)

Objective-C

//System Font
textView.font = [UIFont systemFontOfSize:12];

//Font of your choosing
textView.font = [UIFont fontWithName:@"Font Name" size:12];

Cambia il colore del testo

veloce

textView.textColor = UIColor.red

Objective-C

textView.textColor = [UIColor redColor];

UITextView con testo HTML

NSString *htmlString = @"<p> This is an <b>HTML</b> text</p>";
NSAttributedString *attributedString = [[NSMutableAttributedString alloc]
                                                        initWithData: [htmlString dataUsingEncoding:NSUnicodeStringEncoding]
                                                        options: @{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType }
                                                        documentAttributes: nil
                                                        error: nil
                                                        ];
                _yourTextView.attributedText = attributedString;
                // If you want to modify the font
                field.font = [UIFont fontWithName:@"Raleway-Regular" size:15];

Rileva automaticamente collegamenti, indirizzi, date e altro

UITextView ha integrato il supporto per rilevare automaticamente una varietà di dati. I dati che possono essere rilevati automaticamente includono:

enum {
   UIDataDetectorTypePhoneNumber   = 1 << 0,
   UIDataDetectorTypeLink          = 1 << 1,
   UIDataDetectorTypeAddress       = 1 << 2,
   UIDataDetectorTypeCalendarEvent = 1 << 3,
   UIDataDetectorTypeNone          = 0,
   UIDataDetectorTypeAll           = NSUIntegerMax
};

Abilitazione del rilevamento automatico

// you may add as many as you like by using the `|` operator between options
textView.dataDetectorTypes = (UIDataDetectorTypeLink | UIDataDetectorTypePhoneNumber);

Se abilitato, il testo verrà visualizzato come collegamento ipertestuale su UITextView

Dati cliccabili

Per consentire il clic sul collegamento (che comporterà azioni diverse a seconda del tipo di dati) è necessario assicurarsi che UITextView sia selezionabile ma non modificabile e che l'interazione dell'utente sia abilitata

textView.editable = NO;
textView.selectable = YES;
textView.userInteractionEnabled = YES; // YES by default

Controlla se vuoto o nullo

veloce

if let text = self.textView.text where !text.isEmpty {
    // Do stuff for text
} else {
    // Do stuff for nil text or empty string
}

Objective-C

if (self.textView.text.length > 0){
    // Do stuff for text
}   else {
    // Do stuff for nil text or empty string
}

Ottenere e impostare il Post del cursore

Informazioni utili

L'inizio del testo del campo di testo:

let startPosition: UITextPosition = textView.beginningOfDocument

La fine del testo del campo di testo:

let endPosition: UITextPosition = textView.endOfDocument

La gamma attualmente selezionata:

let selectedRange: UITextRange? = textView.selectedTextRange

Ottieni la posizione del cursore

if let selectedRange = textView.selectedTextRange {
    
    let cursorPosition = textView.offsetFromPosition(textView.beginningOfDocument, toPosition: selectedRange.start)
    
    print("\(cursorPosition)")
}

Imposta la posizione del cursore

Per impostare la posizione, tutti questi metodi stanno effettivamente impostando un intervallo con gli stessi valori di inizio e fine.

All'inizio

let newPosition = textView.beginningOfDocument
textView.selectedTextRange = textView.textRangeFromPosition(newPosition, toPosition: newPosition)

All'estremità

let newPosition = textView.endOfDocument
textView.selectedTextRange = textView.textRangeFromPosition(newPosition, toPosition: newPosition)

Ad una posizione a sinistra della posizione corrente del cursore

// only if there is a currently selected range
if let selectedRange = textView.selectedTextRange {
    
    // and only if the new position is valid
    if let newPosition = textView.positionFromPosition(selectedRange.start, inDirection: UITextLayoutDirection.Left, offset: 1) {
        
        // set the new position
        textView.selectedTextRange = textView.textRangeFromPosition(newPosition, toPosition: newPosition)
    }
}

Ad una posizione arbitraria

Inizia dall'inizio e sposta 5 caratteri a destra.

let arbitraryValue: Int = 5
if let newPosition = textView.positionFromPosition(textView.beginningOfDocument, inDirection: UITextLayoutDirection.Right, offset: arbitraryValue) {
    
    textView.selectedTextRange = textView.textRangeFromPosition(newPosition, toPosition: newPosition)
}

Relazionato

Seleziona tutto il testo

textView.selectedTextRange = textView.textRangeFromPosition(textView.beginningOfDocument, toPosition: textView.endOfDocument)

Seleziona un intervallo di testo

// Range: 3 to 7
let startPosition = textView.positionFromPosition(textView.beginningOfDocument, inDirection: UITextLayoutDirection.Right, offset: 3)
let endPosition = textView.positionFromPosition(textView.beginningOfDocument, inDirection: UITextLayoutDirection.Right, offset: 7)

if startPosition != nil && endPosition != nil {
    textView.selectedTextRange = textView.textRangeFromPosition(startPosition!, toPosition: endPosition!)
}

Inserisci il testo nella posizione corrente del cursore

textView.insertText("Hello")

Gli appunti

  • Questo esempio deriva originariamente da un adattamento di questa risposta di Overflow dello stack .

  • Questa risposta utilizza un campo di testo, ma gli stessi concetti si applicano a UITextView .

  • Usa textView.becomeFirstResponder() per focalizzare il campo di testo e far apparire la tastiera.

  • Vedi questa risposta per come ottenere il testo a un certo intervallo.

Relazionato

Rimuovi gli imbottiture extra per adattarli a un testo misurato con precisione.

UITextView ha UITextView extra per impostazione predefinita. A volte è fastidioso soprattutto se si desidera misurare del testo senza istanze di visualizzazione e posizionarle in un'area precisa.

Fare questo per rimuovere tali paddings.

messageTextView.textContainerInset = UIEdgeInsetsZero
messageTextView.textContainer.lineFragmentPadding = 0

Ora puoi misurare le dimensioni del testo usando NSAttributedString.boundingRectWithSize(...) e ridimensionare un UITextView solo per adattarlo al testo.

let budget = getSomeCGSizeBudget()
let text = getSomeAttributedString()
let textSize = text.boundingRectWithSize(budget, options: [.UsesLineFragmentOrigin, .UsesFontLeading], context: nil).size
messageTextView.frame.size = textSize // Just fits.


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow