zl程序教程

您现在的位置是:首页 >  其它

当前栏目

UIKeyboardWillShowNotification 监听键盘高度变化

监听 变化 键盘 高度
2023-09-14 08:57:55 时间
span >然后调整自己相应的UI元素位置即可,示例代码如下: 
 
 
-(void)viewDidLoad{ 
   [superviewDidLoad]; 
   [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; 

-(void)viewDidUnload{ 
   [superviewDidUnload]; 
   [[NSNotificationCenter defaultCenter]removeObserver:self]; 

-(void)keyboardWillShow:(NSNotification*)notification{ 
   NSDictionary*info=[notification userInfo]; 
   CGSize kbSize=[[info objectForKey:UIKeyboardFrameEndUserInfoKey]CGRectValue].size; 
   NSLog(@"keyboard changed, keyboard width = %f, height = %f",  
          kbSize.width,kbSize.height); 
   //在这里调整UI位置 
}