メッセージスペースをクリックすると、キーボードが下から上に押し上げられ、ツールバーも上に押し上げられます。そして、キャンセルすると (つまり、バックグラウンドでクリックすると)、ツールバーと共にキーボードが押し戻されます。
質問する
2384 次
1 に答える
2
これは、U 、、、および通知を使用して行わIKeyboardWillShowNotification
れます。次に、通知を処理するときに、フレームの高さを調整します。UIKeyboardDidShowNotification
UIKeyboardWillHideNotification
UIKeyboardDidHideNotification
例えば:
- (void) keyboardWillShow:(NSNotification *)aNotification{
NSDictionary* info = [aNotification userInfo];
NSTimeInterval duration = [[info objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue];
NSValue* aValue = [info objectForKey:UIKeyboardFrameBeginUserInfoKey];
CGFloat keyboardHeight = [aValue CGRectValue].size.height;
self.keyboardVissible = YES;
[UIView animateWithDuration:duration animations:^{
CGRect frame = self.contentView.frame;
frame.size.height -= keyboardHeight;
self.contentView.frame = frame;
}];
}
通知を受け取るには登録する必要があります。ビューが表示されている場合にのみキーボード通知を聞く必要があります。次の場所で行うと、奇妙なことが起こる可能性がありますviewDidLoad
。
- (void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
}
- (void) viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}
于 2012-12-06T11:31:22.290 に答える