菜鸟教程小白 发表于 2022-12-12 21:40:58

ios - TableView 中的标签宽度不会根据 sizeToFit 自动布局缩小


                                            <p><p>我正在尝试用表格创建一个聊天 View ,但我的标签宽度没有响应它的宽度。</p>

<p><strong>标签约束</strong></p>

<p> <a href="/image/jTHGO.png" rel="noreferrer noopener nofollow"><img src="/image/jTHGO.png" alt="enter image description here"/></a> </p>

<p><strong>气泡 View 的约束</strong> </p>

<p> <a href="/image/uLeBG.png" rel="noreferrer noopener nofollow"><img src="/image/uLeBG.png" alt="enter image description here"/></a> </p>

<p><strong>代码</strong></p>

<pre><code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
   //...... some code here
   oLblMessage.text=chat.iText;
   ; // this doesn&#39;t responded at sll
   NSLog(@&#34;%f&#34;,oLblMessage.frame.size.width);
   ;
   ;
   return cell;
}
</code></pre>

<p><strong>结果</strong></p>

<p> <a href="/image/m0dhG.png" rel="noreferrer noopener nofollow"><img src="/image/m0dhG.png" alt="enter image description here"/></a> </p>

<p><strong>即使我尝试设置优先级但没有成功。</strong></p>

<p>所以任何解决方案......</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>sizeToFit 由于当前的限制,不会根据文本大小设置宽度。在标签中添加宽度约束,使其小于或等于。在 cellForRowAtIndexpath 中计算文本的大小并通过其 iboutlet 将 size.width 分配给 lableWidth 约束常量。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - TableView 中的标签宽度不会根据 sizeToFit 自动布局缩小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38785364/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38785364/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - TableView 中的标签宽度不会根据 sizeToFit 自动布局缩小