菜鸟教程小白 发表于 2022-12-12 21:20:26

ios - 更改段落样式后重绘 UITextView 选择


                                            <p><p>作为我想要制作的应用程序的初步阶段,我设置了一个简单的测试示例,用于在 <code>UITextView</code> 中缩进段落。它基本上设置了一个带有一些文本的 <code>NSTextStorage</code> 并将其放在 TextView 中。当用户点击缩进按钮时,我希望与当前选择重叠的段落缩进。 </p>

<p><em>不起作用</em>的部分是在段落缩进后,蓝色选择突出显示保持在该位置,并且不会移动到被选择的文本现在所在的位置。我缺少什么来完成这次刷新?</p>

<p>下面是缩进前的工作部分:</p>

<p> <img src="/image/bL7Kj.png" alt="an image showing the selected text in the text view"/> </p>

<p>这是缩进后相同选择的样子:</p>

<p> <img src="/image/E7Z3S.png" alt="enter image description here"/> </p>

<p>缩进代码:</p>

<pre><code>UITextRange *startRange = .start withGranularity:UITextGranularityParagraph inDirection:UITextStorageDirectionForward];
UITextRange *endRange = .end withGranularity:UITextGranularityParagraph inDirection:UITextStorageDirectionBackward];
NSInteger startOffset = MIN(, );
NSInteger endOffset = MAX(, );
NSRange offsetRange = NSMakeRange(startOffset, endOffset - startOffset);

;
[self.textStorage enumerateAttribute:NSParagraphStyleAttributeName
                           inRange:offsetRange
                           options:0
                        usingBlock:^(id value, NSRange range, BOOL *stop) {
                              ((NSMutableParagraphStyle *)value).firstLineHeadIndent += ;
                              ((NSMutableParagraphStyle *)value).headIndent += ;
                              ;
                              ;
                        }];
;
</code></pre>

<p>也许这是一个愚蠢的问题,但我会很感激外界的看法。感谢您的帮助!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>有点晚了,但也许它可以帮助你或其他人......</p>

<p>您可以通过 <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextInput_Protocol/index.html#//apple_ref/occ/intfp/UITextInput/selectedTextRange" rel="noreferrer noopener nofollow">UITextInput-Protocol</a> 更改选择通过设置 selectedTextRange 。</p>

<pre><code>let beginning: UITextPosition = textView.beginningOfDocument
let start: UITextPosition = textView.positionFromPosition(beginning, offset: textView.selectedRange.location)
let end: UITextPosition = textView.positionFromPosition(start!, offset: textView.selectedRange.length)

textView.selectedRange = NSMakeRange(0, 0)
textView.selectedTextRange = textView.textRangeFromPosition(start!, toPosition: end!)
</code></pre>

<p>附:我的代码是用 Swift 编写的,但我认为将其转换为 objective-c没有问题,或者?</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 更改段落样式后重绘 UITextView 选择,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22951559/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22951559/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 更改段落样式后重绘 UITextView 选择