我使用这个简单的代码来检测textView的任何变化。
- (void)textViewDidChange:(UITextView *)textView
{
NSUInteger length;
length = [textView.text length];
NSLog(@"%@",[NSString stringWithFormat:@"%u", length]);
}
是否可以增加特定字符的大小?
如果用户输入3个字符,则第二个字符应增加+5。
例如:
if (length == 3)
{
_textView.text = [_textView.font fontWithSize:_textView.font.pointSize + 5];
/// Here is the problem, I don't know how to increase size only for second character
}
有什么想法吗?