私はここでいくつかの問題を抱えています。内部をタップするとキーボードで閉じられる UITextView があるので、ここでやろうとしているのは、TextView に何を書いているかを確認できる UIScrollView です...
これまでの私のコードは次のとおりです。
-(void)keyboardWillShow {
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)setViewMovedUp:(BOOL)movedUp
{
[UIView animateWithDuration:.3 animations:^{
CGRect rect = self.view.frame;
if (movedUp)
{
scrollView.contentSize = CGSizeZero;
scrollView.frame = CGRectMake(0, 80, 320, 308);
// rect.origin.y -= kOFFSET_FOR_KEYBOARD;
// rect.size.height += kOFFSET_FOR_KEYBOARD;
}
else
{
scrollView.contentSize = CGSizeZero;
scrollView.frame = CGRectMake(0, 190, 320, 308);
// rect.origin.y += kOFFSET_FOR_KEYBOARD;
// rect.size.height -= kOFFSET_FOR_KEYBOARD;
}
self.view.frame = rect;
}];
}
- (void)viewWillDisappear:(BOOL)animated
{
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillHideNotification
object:nil];
}
問題は、コードが正しく機能していないことです。テキストビューをタップすると、上に行く代わりにビューが下に移動します...
何か案は?