0

我正在使用Interface Builder中的UISearchBar+SearchDisplayController提供的UISearchBar,搜索栏位于视图的右侧,激活时需要向左展开,但系统似乎向右展开(在我的情况下,它超出了屏幕),我尝试在它被激活时对其进行动画处理,但系统的动画仍然会发生并且有一些看起来很奇怪的动画。

有没有办法解决这个问题?

非常感谢!

4

1 回答 1

2

这是我对发布的类似问题的回答:herehere

正确动画的关键是指定动画UIViewAnimationOptionLayoutSubviews的选项。

这是我对这些类似问题的完整回答:

通常您不想将搜索栏放在工具栏内,但是,您似乎想做一些类似于我所做的事情。

所以这就是我的做法,它可能被称为 hack,但它就像一个魅力:)

首先,您必须像这样在界面生成器中进行设置:

在此处输入图像描述

请注意,搜索不是工具栏的子项,而是在上面。

搜索栏应该有“清晰的颜色”背景和灵活的左、右和宽度自动调整蒙版。

您在工具栏下方放置了一个黑色背景的 1 像素标签,即。[x=0, y=44, width=320 or frame width, height=1],还有灵活的左右和宽度自动调整大小的蒙版。这是在搜索显示控制器显示表格后隐藏你得到的一个可见像素看法。在没有它的情况下尝试它以理解我的意思。

您设置任何工具栏项目并确保为它们提供出口,因为您将需要这些。

现在是代码...

当您开始搜索时:

- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller
{
    // animate the search bar to the left ie. x=0
    [UIView animateWithDuration:0.25f animations:^{
        CGRect frame = controller.searchBar.frame;
        frame.origin.x = 0;
        controller.searchBar.frame = frame;
    }];
    // remove all toolbar items
    [self.toolbar setItems:nil animated:YES];
}

当你结束搜索

- (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller
{
    // animate search bar back to its previous position and size
    // in my case it was x=55, y=1
    // and reduce its width by the amount moved, again 55px
    [UIView animateWithDuration:0.25f 
                          delay:0.0f
                        // the UIViewAnimationOptionLayoutSubviews is IMPORTANT,
                        // otherwise you get no animation
                        // but some kind of snap-back movement 
                        options:UIViewAnimationOptionLayoutSubviews 
                     animations:^{
                         CGRect frame = self.toolbar.frame;
                         frame.origin.y = 1;
                         frame.origin.x = 55;
                         frame.size.width -= 55;
                         controller.searchBar.frame = frame;
                     } 
                     completion:^(BOOL finished){
                         // when finished, insert any tool bar items you had
                         [self.toolbar setItems:[NSArray arrayWithObject:self.currentLocationButton] animated:YES];
                     }];
}

有了这个,我得到了一个漂亮的动画:)

在此处输入图像描述

在此处输入图像描述

于 2012-09-19T17:48:37.110 回答