7

我的应用程序有一个表格视图控制器,它显示为表单。

在 tableviewcontoller 的顶部有一个 UView,在该 UIView 内部有一个导航栏和一个搜索栏。

旧版本的 IOS 一切正常,但在 IOS7 中,当用户点击搜索栏时,一切都一团糟。

普通的: 在此处输入图像描述

当用户开始键入时: 在此处输入图像描述

搜索结束后: 在此处输入图像描述

在.h

UITableViewController<UITextFieldDelegate,UISearchDisplayDelegate,UISearchBarDelegate>
@property (nonatomic,weak) IBOutlet UINavigationBar *topBar;

尝试了几件事,但代码似乎没有改变任何东西,当放置一个断点时,它进入委托方法

英寸

//-(void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
//    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
//        CGRect statusBarFrame =  self.topBar.frame;
//        [UIView animateWithDuration:0.25 animations:^{
//            for (UIView *subview in self.tableView.subviews)
//                subview.transform = CGAffineTransformMakeTranslation(0, statusBarFrame.size.height+50);
//        }];
//    }
//}
//
//-(void)searchDisplayControllerWillEndSearch:(UISearchDisplayController *)controller {
//    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
//        [UIView animateWithDuration:0.25 animations:^{
//            for (UIView *subview in self.tableView.subviews)
//                subview.transform = CGAffineTransformIdentity;
//        }];
//    }
//}

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        CGRect frame = self.searchDisplayController.searchBar.frame;
        frame.origin.y += self.topBar.frame.size.height;
         self.searchDisplayController.searchBar.frame = frame;
    }
}

- (void)searchDisplayControllerWillEndSearch:(UISearchDisplayController *)controller {
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        CGRect statusBarFrame = self.topBar.frame;
        CGRect frame =  self.searchDisplayController.searchBar.frame;
        frame.origin.y -= statusBarFrame.size.height;
         self.searchDisplayController.searchBar.frame= frame;
    }
}


#Additional Info
- (void)viewDidLoad
{
    [super viewDidLoad];
      if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7)
    {
        //self.searchDisplayController.searchBar.searchBarStyle= UISearchBarStyleProminent;
        self.edgesForExtendedLayout = UIRectEdgeNone;
        //self.edgesForExtendedLayout = UIRectEdgeLeft | UIRectEdgeBottom | UIRectEdgeRight;
    }
}

在此处输入图像描述

根据断点,框架位置和大小是正确的,但它们不会改变self.searchDisplayController.searchBar.frame at all

我也试过

-(void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        [self.topBar setHidden:YES];

    }
}

-(void)searchDisplayControllerWillEndSearch:(UISearchDisplayController *)controller {
    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
        [self.searchDisplayController.searchBar removeFromSuperview];
        CGRect frame = self.searchDisplayController.searchBar.frame;
        frame.origin.y += self.topBar.frame.size.height;
        self.searchDisplayController.searchBar.frame = frame;
        [self.topView addSubview:self.searchDisplayController.searchBar];
        [self.topView bringSubviewToFront:self.topBar];

        [self.topBar setHidden:NO];
    }
}

我该如何解决这个问题?

4

2 回答 2

2

我有一个类似的问题,我认为 searchDisplayController 将 searchBar 大小扩展到完整的 tableHeaderView 大小(我真的不知道为什么这样做)。我在 tableHeaderView 中有搜索栏和一个自定义工具栏(均为 44 像素高度)。

我已经解决了它:

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
    self.tableView.tableHeaderView.frame = CGRectMake(0, 0, self.tableView.bounds.size.width, 44);
}

- (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller {
    self.tableView.tableHeaderView.frame = CGRectMake(0, 0, self.tableView.bounds.size.width, 88);
}

所以我只是在输入搜索时将 tableHeaderView 设置为单个 UISearchBar 的大小,并在所有动画完成时将其设置回来。这解决了我的问题。甚至动画仍然有效(但它们不在 childViewController 中。不知道为什么)

于 2013-11-13T11:56:39.540 回答
2

尝试在您的表视图控制器中设置此值:

if ([self respondsToSelector:@selector(edgesForExtendedLayout)]){
    self.edgesForExtendedLayout = UIRectEdgeNone;
}

并将视图层次结构更改为具有视图,以及 tableView、搜索栏和导航栏,因为它是子视图。使您的表视图控制器成为视图控制器,并将其作为数据源和委托。

或者不要使用 searchBarDisplayController 而只是使用带有它的委托方法的搜索栏:

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
于 2013-11-06T17:52:14.993 回答