I have an UIView and I add a editable UITextView to it,
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(5, 5, 219, 47)]; [self addSubview:textView]; textView.font = [UIFont systemFontOfSize:14];
When I type it doesn’t go down automatic. Anybody got an idea?
if found a solution
i put the textview into a view and set the view to clipToBounds = YES then i put the textView to a height of 70
that fixed the problem.
very strange solution, but it finally works 🙂