菜鸟教程小白 发表于 2022-12-12 11:57:57

ios - 我的 xcode6 上的 UITableview SepartorInset 全宽问题


                                            <p><p>我正在使用 <code>xcode6.0.1</code>。在我的 <code>UIVIew Controller</code> 中包含一个 <code>tableview</code>,我需要设置分隔符插入全宽。我改变了我的 <code>tableview</code> 分隔符插入通过 xib。但是我无法在我的 xcode6 上获得分隔符插入的全宽(在我的 <code>xcode5</code> 分隔符插入全宽是可能的)。如何解决这个问题?</p>

<pre><code>change tableview separator inset via xib
</code></pre>

<p> <img src="/image/yLRJM.png" alt="enter image description here"/> </p>

<pre><code>my tableview separator line like this(not get full width)
</code></pre>

<p> <img src="/image/Z4HEr.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我解决了我的问题</p>

<pre><code>-(void)viewDidLoad{

self.tableView.layoutMargins = UIEdgeInsetsZero;

}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

if () {
    ;
}
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我的 xcode6 上的 UITableview SepartorInset 全宽问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26160636/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26160636/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我的 xcode6 上的 UITableview SepartorInset 全宽问题