菜鸟教程小白 发表于 2022-12-13 04:24:21

ios - 横向设备时,UISearchBar 不附加导航栏


                                            <p><p>在导航栏下添加了 UISearch 栏。
我用</p>

<pre><code> ;
</code></pre>

<p>适用于 iOS 7。</p>

<p>在横向模式下,导航栏和搜索栏之间存在间隙。
在早期版本中,它可以在没有 setFrame 的情况下正常显示。</p>

<p>在搜索栏下方有一个表格 View 。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>导航栏的高度在纵向和横向之间变化。使用 <code>topLayoutGuide</code> 定位您的搜索栏。您可以在 Interface Builder 中或以编程方式执行此操作:</p>

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

    UISearchBar *searchBar = [ init];
    searchBar.delegate = self;
    ;

    searchBar.translatesAutoresizingMaskIntoConstraints = NO;
    NSDictionary *views = @{@&#34;v&#34;:searchBar,
                            @&#34;topLayoutGuide&#34;:self.topLayoutGuide};

    &#34; options:0 metrics:nil views:views]];
    |&#34; options:0 metrics:nil views:views]];
}

#pragma mark - UISearchBarDelegate

- (UIBarPosition)positionForBar:(id &lt;UIBarPositioning&gt;)bar
{
    return UIBarPositionTopAttached;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 横向设备时,UISearchBar 不附加导航栏,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19154082/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19154082/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 横向设备时,UISearchBar 不附加导航栏