我的子视图在出现后键盘隐藏后停止响应

时间:2012-12-18 06:13:58

标签: ios5 ios4 iphone-5

我有很少的UIViewController,其nib文件大小是Retina 4全屏。所有视图添加子视图调用底部菜单作为子项

 BottomMenu *bottomMenu=[[BottomMenu alloc]init ];
    [self.view addSubview:bottomMenu.view];
    [self addChildViewController:bottomMenu]; 
    [bottomMenu release];

IPhone 4中的每一件事情都运行良好但是在iPhone 5中如果我的键盘出现,则会调用keyboardwill apear并且当键盘隐藏keyboardWillHide方法时会被调用

-(void)keyboardWillShow :(NSNotification*)notification {


        self.view.frame=CGRectMake(-1,-120,320,480);

}

-(void)keyboardWillHide :(NSNotification*)notification {


        self.view.frame=CGRectMake(0,0,320,480);

}

但是在键盘隐藏之后我的BottomMenu在Iphone5中停止响应但工作其他视图工作正常并且我的视图在Iphone4中完全正常工作。任何人都可以告诉我这是什么问题

0 个答案:

没有答案