ios – 具有地图应用行为的搜索栏(选中时导航栏全宽)

前端之家收集整理的这篇文章主要介绍了ios – 具有地图应用行为的搜索栏(选中时导航栏全宽)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试显示一个搜索栏,其行为与原生地图应用中的行为完全相同.我的意思是:

>我的导航栏标题视图中的搜索
>选中后,搜索栏占据导航栏的整个宽度,然后显示SearchDisplayController

到目前为止,我设法得到以下行为:

正如您在上面所看到的,我无法让搜索栏占据选择的全宽.虽然,全宽取消按钮似乎是与SearchDisplayController挂钩的搜索栏的默认行为,至少如果搜索栏没有添加到导航栏!

我错过了一种明显的方法吗?或者,当调用searchBarShouldBeginEditing时,我是否必须自己自定义导航栏?

解决方法

只要我没有完美的解决方案,我就会做以下事情.但我仍然愿意接受更好的事情!
- (BOOL)searchBarShouldBeginEditing:(UISearchBar *)searchBar {
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(onCancel)];
    [UIView animateWithDuration:0.1 animations:^(){
        self.navigationItem.leftBarButtonItem = nil;
    }];
return YES;
}

- (void)onCancel {
    [self.searchController setActive:NO];
}

- (BOOL)searchBarShouldEndEditing:(UISearchBar *)searchBar {
    [UIView animateWithDuration:0.1 animations:^(){
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"OpenMenuButton.png"] style:UIBarButtonItemStylePlain target:self action:@selector(openSideMenu:)];
    }];
    self.navigationItem.rightBarButtonItem =self.doneButton;
    return YES;
}

此外,我想知道地图应用程序是否实际使用导航控制器,因为有令我感到惊讶的自定义行为(titleView的宽度,leftBarButton的动画在屏幕外).

原文链接:https://www.f2er.com/iOS/331543.html

猜你在找的iOS相关文章