我正在尝试在键盘节目上调整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)
}
答案 0 :(得分:0)
我通过调整滚动插入而不是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!)
}
}