คำถามติดแท็ก nsrange

13
NSRange เป็น Range <String.Index>
ฉันNSRangeจะแปลงเป็นRange&lt;String.Index&gt;Swift ได้อย่างไร ฉันต้องการใช้UITextFieldDelegateวิธีการต่อไปนี้: func textField(textField: UITextField!, shouldChangeCharactersInRange range: NSRange, replacementString string: String!) -&gt; Bool { textField.text.stringByReplacingCharactersInRange(???, withString: string)
258 nsstring  swift  ios8  nsrange 

11
NSRange จาก Swift Range หรือไม่
ปัญหา: NSAttributedString รับ NSRange ขณะที่ฉันใช้ Swift String ที่ใช้ 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: NSColor.redColor(), range: substringRange) } }) …
175 ios  macos  swift  nsrange 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.