gpt4 book ai didi

ios - 是否可以在故​​事板中的 UISearchBar 和导航项之间添加 View

转载 作者:行者123 更新时间:2023-11-29 12:55:31 25 4
gpt4 key购买 nike

是否可以在故​​事板中的 UISearchbar 和导航项之间添加 View ?如果我添加一个 View ,然后添加 UISearchbar,则 UISearchbar 将成为 View 的子项。唯一的问题是在 tableview 搜索之后, View 的内容被隐藏了。

谢谢

最佳答案

您可以在 iOS 7 中执行此操作:

  1. 在 Storyboard上,将 UISearchDisplayController 添加到您的 View 控制者
  2. viewDidLoad中:

    - (void)viewDidLoad
    {
    [super viewDidLoad];

    // Set the displaysSearchBarInNavigationBar property
    self.searchDisplayController.displaysSearchBarInNavigationBar = YES;

    // Sample custom view for demonstration purposes
    UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 20, 20)];
    customView.backgroundColor = [UIColor redColor];

    // Create a UIBarButtonItem with your custom view
    UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithCustomView:customView];

    self.navigationItem.leftBarButtonItem = item;
    }

产生这个(红色方 block 是自定义 View ): SearchBar in navigation item

关于ios - 是否可以在故​​事板中的 UISearchBar 和导航项之间添加 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21246806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com