我在向下移动UITextview
时遇到问题。
UITextField
工作正常但UITextView
无效。
这是我按下TextView时弹出工具栏的代码。请帮忙
- (IBAction)HideKeyboard:(id)sender {
[self.myTextField resignFirstResponder];
[self.myTextView resignFirstResponder];
[self.myScrollView setContentOffset:CGPointZero animated:YES];
}
答案 0 :(得分:1)
我假设您需要将UITextView移动到键盘上方,然后尝试以下方法
将TPKeyboardAvoiding Framework添加到您的项目中,该项目将负责移动键盘上方的UITextField's
和UITextView's
。
答案 1 :(得分:0)
您的TextView必须位于ScrollView下。
试试这个。
在ViewdidLoad方法中设置键盘通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardDidHide:) name:UIKeyboardWillHideNotification object:nil];
-(void)keyboardDidShow:(NSNotification *)notif
{
scrollView.contentSize=CGSizeMake(self.view.frame.size.width, scrollOriginalFrame.size.height+350);
NSTimeInterval duration = 0.6;
if(txt_preRemindText.isFirstResponsder)
{
[UIView animateWithDuration:duration animations:
^{
[scrollView setContentOffset:CGPointMake(0,260) animated:YES];
}];
}
}
答案 2 :(得分:0)
使用此代码。
//此代码将添加到导入文件下方。
static const CGFloat PORTRAIT_KEYBOARD_HEIGHT = 216;
static const CGFloat LANDSCAPE_KEYBOARD_HEIGHT = 162;
static const CGFloat KEYBOARD_ANIMATION_DURATION = 0.3;
static const CGFloat MINIMUM_SCROLL_FRACTION = 0.2;
static const CGFloat MAXIMUM_SCROLL_FRACTION = 0.8;
//添加此功能后。
-(void) textViewDidBeginEditing:(UITextView *)textView
{
CGRect textFieldRect = [self.view.window convertRect:textView.bounds fromView:textView];
CGRect viewRect = [self.view.window convertRect:self.view.bounds fromView:self.view];
CGFloat midline = textFieldRect.origin.y + 0.5 * textFieldRect.size.height;
CGFloat numerator = midline - viewRect.origin.y - MINIMUM_SCROLL_FRACTION * viewRect.size.height;
CGFloat denominator = (MAXIMUM_SCROLL_FRACTION - MINIMUM_SCROLL_FRACTION) * viewRect.size.height;
CGFloat heightFraction = numerator / denominator;
if(heightFraction < 0.0)
{
heightFraction = 0.0;
}
else if(heightFraction > 1.0)
{
heightFraction = 1.0;
}
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
if(orientation == UIInterfaceOrientationPortrait || orientation == UIInterfaceOrientationPortraitUpsideDown){
animatedDistance = floor(PORTRAIT_KEYBOARD_HEIGHT * heightFraction);
}
else
{
animatedDistance = floor(LANDSCAPE_KEYBOARD_HEIGHT * heightFraction);
}
CGRect viewFrame = self.view.frame;
viewFrame.origin.y -= animatedDistance;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:KEYBOARD_ANIMATION_DURATION];
[self.view setFrame:viewFrame];
[UIView commitAnimations];
}
//为textview添加此方法
- (void)textViewDidEndEditing:(UITextView *)textView
{
CGRect viewFrame = self.view.frame;
viewFrame.origin.y += animatedDistance;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:KEYBOARD_ANIMATION_DURATION];
[self.view setFrame:viewFrame];
[UIView commitAnimations];
}
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
if ([text isEqualToString:@"\n"])
{
[txt_description resignFirstResponder];
return NO;
}
return YES;
}
如果您在textview中进行编辑,则可以查看。