菜鸟教程小白 发表于 2022-12-12 15:07:51

ios - 搜索 View 始终显示在表格 View 的顶部


                                            <p><p>我拿了一个 UITableViewController 并尝试在其中添加 UISearchDisplayController。我从互联网上阅读了很多代码,但不知道我有什么问题。</p>

<p>我的问题是为什么 UISearchDisplayController 不总是停留在 UITableView 之上。</p>

<p>这是我的代码</p>

<pre><code>SearchView_controller.h

@interface SearchView_controller : UITableViewController&lt;UISearchBarDelegate,UISearchDisplayDelegate&gt;
@end


SearchView_controller.m

@interface SearchView_controller ()
{
    UISearchDisplayController *searchController;
}
@end

@implementation SearchView_controller

- (void)viewDidLoad {
    ;

    self.title=@&#34;Test&#34;;

    UISearchBar *searchBar = [ initWithFrame:CGRectMake(0, self.tableView.frame.origin.y, self.tableView.frame.size.width, 44)];
    ;
    ;

    searchController = [ initWithSearchBar:searchBar
                                                                contentsController:self];
    ;
    ;
    ;

    ;

}

-(void) scrollViewDidScroll:(UIScrollView *)scrollView {
    UISearchBar *searchBar = searchController.searchBar;
    CGRect rect = searchBar.frame;
    rect.origin.y = MAX(0, scrollView.contentOffset.y);
    searchBar.frame = rect;
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 30;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @&#34;searchview_customecell&#34;;
    searchview_customecell *cell = (searchview_customecell *);
    cell.lbl_name.text=@&#34;test&#34;;
    return cell;
}

searchview_customecell.h


@interface searchview_customecell : UITableViewCell
@property(nonatomic, weak) IBOutlet UILabel *lbl_name;
@end

searchview_customecell.m

@implementation searchview_customecell

- (void)awakeFromNib {
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    ;

    // Configure the view for the selected state
}

@end
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>最好用 <code>UIViewController</code> 而不是 <code>UITableviewController</code> 来处理这些东西。</p>

<p>在 <code>UITableViewController</code> 的情况下, View 是 <code>tableView</code> 所以每当添加 <code>searchBar</code> 时,它都会添加到 <code>tableView</code> .</p>

<p><strong>这个问题有两种可能的解决方案:</strong></p>

<ol>
<li><p>要么用 UIViewController 替换 Tableviewcontroller 并将 Searchbar 放在 View 的开头(不要将其添加到 tableview 标题中),然后是 tableview。</p></li>
<li><p>点击此链接:<a href="https://stackoverflow.com/questions/6635680/uisearchdisplaycontroller-with-uitableviewcontroller" rel="noreferrer noopener nofollow">UISearchDisplayController with UITableViewController</a> </p></li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 搜索 View 始终显示在表格 View 的顶部,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29821860/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29821860/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 搜索 View 始终显示在表格 View 的顶部