Domande taggate «nsrange»

13
NSRange to Range <String.Index>
Come posso convertire NSRangein Range&lt;String.Index&gt;in Swift? Voglio usare il seguente UITextFieldDelegatemetodo: func textField(textField: UITextField!, shouldChangeCharactersInRange range: NSRange, replacementString string: String!) -&gt; Bool { textField.text.stringByReplacingCharactersInRange(???, withString: string)
258 nsstring  swift  ios8  nsrange 

11
NSRange di Swift Range?
Problema: NSAttributedString accetta un intervallo NS mentre sto utilizzando una stringa Swift che utilizza Range let text = "Long paragraph saying something goes here!" let textRange = text.startIndex..&lt;text.endIndex let attributedString = NSMutableAttributedString(string: text) text.enumerateSubstringsInRange(textRange, options: NSStringEnumerationOptions.ByWords, { (substring, substringRange, enclosingRange, stop) -&gt; () in if (substring == "saying") { attributedString.addAttribute(NSForegroundColorAttributeName, …
176 ios  macos  swift  nsrange 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.