回答:
iOS 3.2以降、この効果を実現する新しい方法があります。
UITextFields
またUITextViews
、inputAccessoryView
任意のビューに設定できるプロパティがあり、自動的に上に表示され、キーボードでアニメーション化されます。
使用するビューは、他の場所のビュー階層にある必要はなく、スーパービューに追加する必要もないことに注意してください。これは自動的に行われます。
だから基本的に:
initメソッドで:
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self selector:@selector(keyboardWillShow:) name: UIKeyboardWillShowNotification object:nil];
[nc addObserver:self selector:@selector(keyboardWillHide:) name: UIKeyboardWillHideNotification object:nil];
次に、上記の方法でバーの位置を調整します。
-(void) keyboardWillShow:(NSNotification *) note
{
CGRect r = bar.frame, t;
[[note.userInfo valueForKey:UIKeyboardBoundsUserInfoKey] getValue: &t];
r.origin.y -= t.size.height;
bar.frame = r;
}
ラップして位置の変化をアニメーション化することで、きれいにすることができます
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3];
//...
[UIView commitAnimations];
UIKeyboardFrameBeginUserInfoKey
同じ情報を提供するような、他の類似したものがあります。
UIKeyboardFrameEndUserInfoKey
して、キーボードの最終フレーム(画面座標)を取得する必要があります。UIKeyboardAnimationDurationUserInfoKey
およびUIKeyboardAnimationCurveUserInfoKey
を使用して、キーボードの動作と正確に一致させるために必要な残りのパラメーターを取得することもできます。
これはtonklonからの既存の回答に基づいています -キーボードの上部にある半透明の黒いツールバーと右側の[完了]ボタンを表示するコードスニペットを追加しています:
UIToolbar *toolbar = [[[UIToolbar alloc] init] autorelease];
[toolbar setBarStyle:UIBarStyleBlackTranslucent];
[toolbar sizeToFit];
UIBarButtonItem *flexButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
UIBarButtonItem *doneButton =[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(resignKeyboard)];
NSArray *itemsArray = [NSArray arrayWithObjects:flexButton, doneButton, nil];
[flexButton release];
[doneButton release];
[toolbar setItems:itemsArray];
[aTextField setInputAccessoryView:toolbar];
そして-resignKeyboard
次のようになります:
-(void)resignKeyboard {
[aTextField resignFirstResponder];
}
それが誰かを助けることを願っています。
3.0以降では、アニメーション期間とカーブを userInfo
は、通知のディクショナリ。
たとえば、キーボードのスペースを確保するためにビューのサイズをアニメーション化するには、に登録しUIKeyboardWillShowNotification
、次のようにします。
- (void)keyboardWillShow:(NSNotification *)notification
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationCurve:[[[notification userInfo] objectForKey:UIKeyboardAnimationCurveUserInfoKey] intValue]];
[UIView setAnimationDuration:[[[notification userInfo] objectForKey:UIKeyboardAnimationDurationUserInfoKey] doubleValue]];
CGRect frame = self.view.frame;
frame.size.height -= [[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] CGRectValue].size.height;
self.view.frame = frame;
[UIView commitAnimations];
}
についても同様のアニメーションを実行しUIKeyboardWillHideNotification
ます。
このメソッドを作成し、ViewWillLoadで呼び出します。
- (void) keyboardToolbarSetup
{
if(self.keyboardToolbar==nil)
{
self.keyboardToolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 44)];
UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithTitle:@"Cancel" style:UIBarButtonItemStylePlain target:self action:@selector(anyAction)];
UIBarButtonItem *extraSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStyleDone target:self action:@selector(anyOtherAction)];
NSArray *toolbarButtons = [[NSArray alloc]initWithObjects:cancelButton,extraSpace,doneButton, nil];
[self.keyboardToolbar setItems:toolbarButtons];
self.myTextView.inputAccessoryView=self.keyboardToolbar;
}
}
キーボードビューの寸法を取得する方法(AFAIK)はありません。ただし、少なくともこれまでのすべてのiPhoneバージョンでは一定です。
ツールバーの位置をビューの下部からのオフセットとして計算し、ビューのサイズを考慮する場合、ナビゲーションバーが存在するかどうかを心配する必要はありません。
例えば
#define KEYBOARD_HEIGHT 240 // example - can't remember the exact size
#define TOOLBAR_HEIGHT 30
toolBarRect.origin.y = viewRect.size.height - KEYBOARD_HEIGHT - TOOLBAR_HEIGHT;
// move toolbar either directly or with an animation
定義する代わりに、簡単に keyboardHeight
キーボードが表示されているかどうかに基づいてサイズを返す関数をこのツールバーの位置をレイアウトを再編成する別の関数に移動できます。
また、ビューのサイズは、ナビゲーションバーの設定に基づいてロードと表示が切り替わる可能性があるため、この配置をどこで行うかによっても異なります。私はそれを行うのに最適な場所はviewWillAppearにあると思います。