본문 바로가기

Development/IOS & Mac

[IOS] Keyboard 값 동적으로 받아오기

아래의 코드와 같이 사용하면 키보드가 보일때마다 동적으로 값을 받아올수 있다.~!



[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWasShown:) name:UIKeyboardDidShowNotification object:nil]; - (void)keyboardWasShown:(NSNotification *)notification { // Get the size of the keyboard. CGSize keyboardSize = [[[notification userInfo] objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size; //your other code here.......... }