9

我正在使用 TabBar 应用程序。在一个视图中,有一个 UISearchBar,当按下时,键盘就会出现。

问题是键盘隐藏了标签栏。

你知道怎么解决吗?

4

3 回答 3

15

自从被问到这个问题已经有一段时间了,但是为了文档的缘故,这里是这样的:首先,订阅 NSNotificationCenter 以接收键盘通知:

-(void) viewWillAppear:(BOOL)animated
{
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillToggle:)
                                             name:UIKeyboardWillShowNotification object:nil];
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillToggle:)
                                             name:UIKeyboardWillHideNotification object:nil];
}

不要忘记取消订阅

- (void)viewWillDisappear:(BOOL)animated 
{
 [self.view endEditing:YES];
 [super viewWillDisappear:animated];
 [[NSNotificationCenter defaultCenter] removeObserver:self
                                                name:UIKeyboardWillShowNotification object:nil];
 [[NSNotificationCenter defaultCenter] removeObserver:self
                                                name:UIKeyboardWillHideNotification  object:nil];
}

然后实现通知中心将调用的函数:

- (void) keyboardWillToggle:(NSNotification *)aNotification
{
 CGRect frame = [[[self tabBarController] tabBar] frame];
 CGRect keyboard = [[aNotification.userInfo valueForKey:@"UIKeyboardFrameEndUserInfoKey"] CGRectValue];
 frame.origin.y = keyboard.origin.y - frame.size.height;
 [UIView animateWithDuration:[[aNotification.userInfo valueForKey:@"UIKeyboardAnimationDurationUserInfoKey"] floatValue] animations:^
 {
     [[[self tabBarController] tabBar] setFrame:frame];
 }];

这将以键盘的速度为 TabBar 设置动画并使其保持在顶部。

于 2013-02-08T22:38:03.500 回答
-1

据我所知,你不能移动键盘..所以尝试使用转换来移动键盘上方的标签栏

取自这里

另一个链接

于 2011-03-11T11:26:10.087 回答
-1

我通过显示自定义键盘而不是本机解决了这个问题uikeyboard

从此github链接下载示例项目。

将键盘自定义为所需的本机键盘,无论是数字还是单词。

然后将 uibuttons 放在带有标签栏控制器的自定义键盘下方,如下图所示。试试这个(未来的访客),它可能会解决问题。

在此处输入图像描述

于 2013-06-18T13:43:56.437 回答