菜鸟教程小白 发表于 2022-12-12 22:15:32

iphone - UITableView 中的 UILabel 设置大小


                                            <p><p>我想将标签 subview 添加到 UITableViewCell。我可以轻松地将框架原点和大小设置为特定值,但如何使用当前/默认单元格标签高度和位置?</p>

<pre><code>UILabel *labPerHour;

cell.textLabel.text       = @&#34;Rate&#34;;

labPerHour = [ init];

//labPerHour.frame = CGRectMake( 280, cell.textLabel.frame.origin.y, 80, cell.textLabel.frame.size.height );
labPerHour.frame = CGRectMake( 260, 7, 30, 30 );
labPerHour.text= @&#34;$/hr&#34;;


;
</code></pre>

<p>我希望注释掉的行可以工作..或类似的东西。</p>

<p>有人可以帮忙吗?这段代码当然是我的 cellForRowAtIndexPath 方法的一部分。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我不确定。也许它会起作用。这个我没试过!!</p>

<pre><code>CGRect theFrame = cell.textLabel.frame;
theFrame.origin.x = 280;
theFrame.size.width = 80;
labPerHour.frame = theFrame;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - UITableView 中的 UILabel 设置大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11737199/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11737199/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - UITableView 中的 UILabel 设置大小