1

当添加 2 行或更多UiTextView行时,它看起来不错,但是当用户只输入一行时,文本会停留在UiTextView. 我怎样才能强迫它留在左上角UiTextView

4

2 回答 2

1

您可以查看此博客(iOS:UITextView 中的垂直对齐文本),其中解释了如何进行中心和底部垂直对齐。在您的情况下使用类似的逻辑并将 contentOffset y 参数设置为零以使其顶部对齐。

这是来自博客的代码,

- (void) viewDidLoad {
   [textField addObserver:self forKeyPath:@"contentSize" options:(NSKeyValueObservingOptionNew) context:NULL];
   [super viewDidLoad];
}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
   UITextView *tv = object;
   //Center vertical alignment
   //CGFloat topCorrect = ([tv bounds].size.height - [tv contentSize].height * [tv zoomScale])/2.0;
   //topCorrect = ( topCorrect < 0.0 ? 0.0 : topCorrect );
   //tv.contentOffset = (CGPoint){.x = 0, .y = -topCorrect};

   //Bottom vertical alignment
   CGFloat topCorrect = ([tv bounds].size.height - [tv contentSize].height);
    topCorrect = (topCorrect <0.0 ? 0.0 : topCorrect);
    tv.contentOffset = (CGPoint){.x = 0, .y = -topCorrect};
}
于 2013-01-18T22:43:41.080 回答
1

我刚刚找到了一个更简单的解决方案。下一个代码将只移动文本:[textView setContentInset:UIEdgeInsetsMake(5, 0, 5,0)]

于 2013-02-09T16:21:35.613 回答