上部のテキスト フィールドを除いて、入力を開始すると iPhone キーボードは残りのテキスト フィールドをすべて非表示にします。
質問する
1967 次
4 に答える
1
とに注意しUIKeyboardWillShowNotification
てUIKeyboardWillHideNotification
ください。これらのNSNotification
通知で配信されるオブジェクトには、アニメーション終了後にキーボードが持つフレームに関する情報を含む userInfo ディクショナリがあります。これらの通知に応じてレイアウトを調整し、必要なものがキーボードで覆われないようにします。
于 2013-03-19T07:23:11.233 に答える
1
すべてのテキストフィールドをスクロールビューに配置する前に、次のコードを使用します。
#define kOFFSET_FOR_KEYBOARD 80.0
-(void)keyboardWillShow {
// Animate the current view out of the way
if (self.view.frame.origin.y >= 0)
{
[self setViewMovedUp:YES];
}
else if (self.view.frame.origin.y < 0)
{
[self setViewMovedUp:NO];
}
}
-(void)keyboardWillHide {
if (self.view.frame.origin.y >= 0)
{
[self setViewMovedUp:YES];
}
else if (self.view.frame.origin.y < 0)
{
[self setViewMovedUp:NO];
}
}
-(void)textFieldDidBeginEditing:(UITextField *)sender
{
if ([sender isEqual:mailTf])
{
//move the main view, so that the keyboard does not hide it.
if (self.view.frame.origin.y >= 0)
{
[self setViewMovedUp:YES];
}
}
}
//method to move the view up/down whenever the keyboard is shown/dismissed
-(void)setViewMovedUp:(BOOL)movedUp
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3]; // if you want to slide up the view
CGRect rect = self.view.frame;
if (movedUp)
{
// 1. move the view's origin up so that the text field that will be hidden come above the keyboard
// 2. increase the size of the view so that the area behind the keyboard is covered up.
rect.origin.y -= kOFFSET_FOR_KEYBOARD;
rect.size.height += kOFFSET_FOR_KEYBOARD;
}
else
{
// revert back to the normal state.
rect.origin.y += kOFFSET_FOR_KEYBOARD;
rect.size.height -= kOFFSET_FOR_KEYBOARD;
}
self.view.frame = rect;
[UIView commitAnimations];
}
- (void)viewWillAppear:(BOOL)animated
{
// register for keyboard notifications
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow)
name:UIKeyboardWillShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillHide)
name:UIKeyboardWillHideNotification
object:nil];
}
- (void)viewWillDisappear:(BOOL)animated
{
// unregister for keyboard notifications while not visible.
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillHideNotification
object:nil];
}
于 2013-03-19T07:23:19.123 に答える
1
次のようなプロパティを入れて使用しUITextField
ます。UIScrollView
contentOffSet
UIScrollView
-(BOOL) textFieldShouldBeginEditing:(UITextField *)textField
{
if (textField == txt1) //
{
[txt1 becomesFirstResponder];
scrMainView.contentOffset = CGPointMake(0, 20);
}
else if (textField == txt2) //
{
[txt1 resignFirstResponder];
[txt2 becomesFirstResponder];
scrMainView.contentOffset = CGPointMake(0, 60);
}
//And so on..
return YES;
}
うまくいけば、答えが得られるでしょう。
ありがとう。
于 2013-03-19T07:24:43.747 に答える
0
ビューの上にスクロールビューを使用し、選択したテキストフィールドに応じて数学的 contentOffset 設定を実装する必要があります。選択したテキストフィールドはデリゲートメソッドから取得でき、オフセットの計算はテキストフィールドフレームで実行できます
于 2013-03-19T07:21:11.690 に答える