UITextView输入文字的时候上下乱蹦的问题

很简单就可以搞定了:

if([selfrespondsToSelector:@selector(setAutomaticallyAdjustsScrollViewInsets:)]) {self.automaticallyAdjustsScrollViewInsets =NO;  }

主要是因为在iOS7下使用了navigationController让scrollView自动适应屏幕造成的。而UITextView继承与scrollView

你可能感兴趣的:(UITextView输入文字的时候上下乱蹦的问题)