调整UITextView动画的高度



我正试图在键盘显示上调整UITextView的大小。然而,我下面的代码表现得很奇怪。文本视图跳到新高度,然后设置动画回到其原始高度。如有任何帮助,我们将不胜感激。

 //Handles keyboard appearance
    func keyboardWillShow(notification:NSNotification){
        var rightButton = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Done, target: self, action: Selector("dismissKeyboard"))
        self.navigationItem.rightBarButtonItem = rightButton
        self.origNoteFrame = notes.frame
        var duration = NSTimeInterval((notification.userInfo![UIKeyboardAnimationDurationUserInfoKey] as NSNumber).intValue)
        var options = UIViewAnimationOptions(
            UInt((notification.userInfo![UIKeyboardAnimationCurveUserInfoKey] as NSNumber).integerValue << 16)
        )
        UIView.animateWithDuration(
            duration,
            delay: 0.0,
            options: options,
            animations: {
                self.notes.frame = CGRectMake(self.notes.frame.origin.x, self.notes.frame.origin.y, self.notes.frame.width, (notification.userInfo?[UIKeyboardFrameEndUserInfoKey] as NSValue).CGRectValue().origin.y - 10)
            },
            completion: nil)
    }

我通过调整滚动插入而不是UITextView的高度来解决这个问题。

//Handles keyboard appearance
    func keyboardWillShow(notification:NSNotification){
        //Set up done button
        self.origRightBtn = self.navigationItem.rightBarButtonItem
        var rightButton = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Done, target: self, action: Selector("dismissKeyboard"))
        self.navigationItem.rightBarButtonItem = rightButton
        //Move scrolling insets
        var info:Dictionary = notification.userInfo!
        var rect:CGRect = self.view.convertRect((info[UIKeyboardFrameBeginUserInfoKey] as NSValue).CGRectValue(), fromView: nil)
        var insets:UIEdgeInsets = UIEdgeInsets(top: 0.0, left: 0.0, bottom: rect.size.height - 150, right: 0.0)
        self.notes.contentInset = insets
        self.notes.scrollIndicatorInsets = insets
        var newRect:CGRect = self.view.frame
        newRect.size.height -= rect.height - 150
        //Scroll to selected range
        if(selectedRange != nil)
        {
            self.notes.scrollRangeToVisible(selectedRange!)
        }
    }

最新更新