菜鸟教程小白 发表于 2022-12-13 02:10:59

ios - 无法从其内容设置 UITextView 高度


                                            <p><p>我正在尝试根据将要显示的文本量来设置 UITextView 的高度。我在这里找到了这个解决方案:</p>

<pre><code>CGRect frame = _textView.frame;
frame.size.height = _textView.contentSize.height;
_textView.frame = frame;
</code></pre>

<p>但我无法让它工作,我认为这与我没有正确使用 addSubview 将 UITextView 添加到 View 有关,但我无法弄清楚!我相信这是一个很容易解决的问题。 </p>

<p>这是我的 viewcontroller.m 文件代码</p>

<pre><code>#import &#34;ViewController.h&#34;

@interface ViewController ()

@end

@implementation ViewController

@synthesize textView = _textView;


- (void)viewDidLoad
{
    ;
    // Do any additional setup after loading the view, typically from a nib.



    ;

    CGRect frame = _textView.frame;
    frame.size.height = _textView.contentSize.height;
    _textView.frame = frame;



}

- (void)didReceiveMemoryWarning
{
    ;
    // Dispose of any resources that can be recreated.
}

@end
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您不能在 <code>viewDidLoad</code> 中执行此操作,因为尚未设置 textView 框架。</p>

<p>以更合适的方式移动您的代码,例如 <code>viewWillAppear:</code> 或 <code>viewDidLayoutSubviews</code></p>

<pre><code>- (void)viewWillAppear:(BOOL)animated {
   ;

   CGRect frame = _textView.frame;
   frame.size.height = _textView.contentSize.height;
   _textView.frame = frame;
}
</code></pre>

<p>如果您想更好地了解 <code>UIViewController</code>View 的生命周期,您可能需要查看 <a href="https://stackoverflow.com/a/6758424/846273" rel="noreferrer noopener nofollow">this very nice answer</a> .</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法从其内容设置 UITextView 高度,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15868539/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15868539/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法从其内容设置 UITextView 高度