0

下面是我的 textView 代码,但sizeToFit使 textView 的高度是其内容文本的两倍多。请提供任何解决方案

UITextView *paragraphView  = [[UITextView alloc] initWithFrame: CGRectMake(10, 10, 295, 30)];
[paragraphView setContentMode: UIViewContentModeScaleToFill];
[paragraphView setScrollEnabled: NO];
[paragraphView setEditable: NO];
[paragraphView setText: @"hello there ..........hii i am here....."];
[paragraphView setFont: [UIFont systemFontOfSize: 30]];

[self.view addSubview: paragraphView];

[paragraphView sizeToFit];
4

1 回答 1

0

尝试使用 NSLayout 约束来构建 UITextview 而不是 initwithframe。您可能会正确获得 textview 的内容大小高度

于 2018-10-22T04:21:40.037 回答