iOS:将不可编辑的字符串附加到 UITextView 的末尾
<p><p>我想在 iOS 中重现类似于 Facebook“更新状态” View 的屏幕。 </p>
<p> <img src="/image/YSlx8.png" alt="enter image description here"/>
<img src="/image/PveTe.png" alt="enter image description here"/> </p>
<p>(此文本应可编辑)步行(此处过去的任何内容均不可编辑)- 在南纳拉宾海滩</p>
<p>用户应该能够在附加字符串的左侧输入/编辑文本。附加的字符串需要包裹在其父级中并且可以点击。</p>
<p>有人知道这是怎么做到的吗? (我最近也在 Viddy 应用中看到了它)。</p>
<p>会不会是一个不断增长的 UITextField,其 UIAttributedString 分成两行,在输入文本时更新其框架?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><strong>更新:</strong>
看起来你想要的是让用户将光标放在签名中,但不让她输入<br/>
在这种情况下,你会想要使用它来代替</p>
<pre><code>- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{
NSInteger signatureLength=20;
if(range.location>self.textView.text.length-signatureLength){
return false;
}
else{
return true;
}
}
</code></pre>
<p><strong>原文:</strong></p>
<p>你需要使用 UITextViewDelegate</p>
<p>实现 - (void)textViewDidChangeSelection:(UITextView *)textView 方法,类似于:</p>
<p>对于这个例子,我们假设签名长度是 20,这看起来像这样:</p>
<pre><code>-(void)textViewDidChangeSelection:(UITextView *)textView{
NSInteger signatureLength=20;
NSRange newSelection=self.textView.selectedRange;
if(newSelection.location>self.textView.text.length-signatureLength){
;
}
}
</code></pre>
<p>所以基本上每次选择(在这种情况下==光标)更改时都会拦截,如果光标将位于签名的中间,则在之前重新定位它。
设置长度为 0 的选择只会改变光标位置。</p></p>
<p style="font-size: 20px;">关于iOS:将不可编辑的字符串附加到 UITextView 的末尾,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/10263919/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/10263919/
</a>
</p>
页:
[1]