我有一个特遣部队,我希望能够通过以下方式实现自动化:
[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)];
}
是否有任何人知道如何使汽车完全能够完成,是否有代表?
感谢!