Questions marquées «nsrange»

13
NSRange to Range <String.Index>
Comment puis - je convertir NSRangeà Range&lt;String.Index&gt;Swift? Je souhaite utiliser la UITextFieldDelegateméthode suivante : func textField(textField: UITextField!, shouldChangeCharactersInRange range: NSRange, replacementString string: String!) -&gt; Bool { textField.text.stringByReplacingCharactersInRange(???, withString: string)
258 nsstring  swift  ios8  nsrange 

11
NSRange de Swift Range?
Problème: NSAttributedString prend un NSRange pendant que j'utilise une Swift String qui utilise 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, value: …
176 ios  macos  swift  nsrange 
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.