我有这个UITextView
很好用,除了,我不能让里面的文本UITextView
只有在 ' 的大小几乎满了之后才开始滚动UITextView
, UITextView 有 4 行高,但是一旦我到达第 2 行,第 1 行就是向上推,我不希望视图开始滚动,直到我到达 5 行。scrollingEnabled = NO
让它根本不滚动,所以这不起作用。
UITextView *barf_ = [[UITextView alloc] initWithFrame:CGRectMake(20.0, 310.0, 155, 50)];
barf_.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);
//[barf_ scrollRangeToVisible:NSMakeRange([barf_.text length], 0)];
barf_.layer.cornerRadius = 3.0f;
barf_.layer.borderWidth = 0.5f;
barf_.font = [UIFont fontWithName:@"Helvetica" size:13];