I have an issue with my UITextView.
Whenever I try to type something the UITextView goes up beyond the frame and I can’t seem to do anything. Why is this?
Some screenshots:
when I type in the first word:

then typing another word, it shifts up and I can’t see a thing:

Some code:
self.messageTextView = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, 600, 30)];
[self.messageTextView setAutocorrectionType:UITextAutocorrectionTypeNo];
[self.messageTextView setAutocapitalizationType:UITextAutocapitalizationTypeNone];
[self.messageTextView setFont:[UIFont fontWithName:@"ArialMT" size:16.0]];
self.messageTextView.delegate = self;
Did you try,
textView.contentInset = UIEdgeInsetsZero;