아래의 코드와 같이 사용하면 키보드가 보일때마다 동적으로 값을 받아올수 있다.~!
[[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..........
}
'Development > IOS & Mac' 카테고리의 다른 글
[iOS] facebook 로그인 연동하기~! (2) (0) | 2014.02.04 |
---|---|
[iOS] facebook 로그인 연동하기~! (1) (0) | 2014.02.04 |
[IOS Library] Chat (UIBubbleTableView) (0) | 2013.12.10 |
[IOS Library] Chat (JSMessagesViewController) (0) | 2013.12.10 |
[XCode] XCode5에서 No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386) (1) | 2013.10.14 |