English 中文(简体)
电话:UITextView 代表休息
原标题:iphone setting UITextView delegate breaks auto completion

我有一个特遣部队,我希望能够通过以下方式实现自动化:

[self.textView setAutocorrectionType:UITextAutocorrectionTypeYes];

通常,除非我给UIText 代表。 当一名代表被安排时,汽车完成工作。 该代表只有以下方法:

- (void)textViewDidChange:(UITextView *)textView
{
 self.textView.text = [self.textView.text stringByReplacingOccurrencesOfString:@"
" withString:@""];

 int left = LENGTH_MAX -[self.textView.text length];
 self.characterCountLabel.text = [NSString stringWithFormat:@"%i",abs(left)];

}

是否有任何人知道如何使汽车完全能够完成,是否有代表?

感谢!

最佳回答
NSRange r= [self.textView.text rangeOfString:@"
"];
if(r.location!=NSNotFound) //must check before replacing new lines right away, otherwise spellcheck gets broken
{
    self.textView.text = [self.textView.text stringByReplacingOccurrencesOfString:@"
" withString:@""];
}

造成这一问题的原因是,在修改案文时,可能会对案文作任何改动(即更换方法)。 解决办法是,只在必要时才使用替代方法。

问题回答

这可能打破了自动化,因为你同时修改了的案文。

为此: 你们都需要从您的界面(h)档案中删除UITextViewDelegate。

您仍然可以把该代表安排在文稿中。

Od,权利? 对我来说,我希望它也能够解决你的问题。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签