1.首先设置textView的frame 根据视图的
func textViewDidChange(textView: UITextView) {
//允许最高的高度的行数
maxHeight = 72
//frame设置
fram = textView.frame
//自己设置的size
constraintSize = CGSizeMake(fram.size.width,maxHeight)
//自适应的
siz = textView.sizeThatFits(constraintSize)
//如果textview 大于设置的maxheight,这个heigtht 就跟maxheight相同,且可以滚动
if (siz.height>=maxHeight){
siz.height = maxHeight
self.scrollEnabled=true
}
//否则不可以滚动
else{
self.scrollEnabled=false
}
//写的一个回调 在键盘高度监听处使用 在根据键盘高度 判断其textview的origan.y
if let call = callcommentframe{
call()
}
//在设置textView的frame
textView.frame = CGRectMake(fram.origin.x,fram.origin.y,fram.size.width,siz.height)
2.键盘监听事件的操作
if AppDelegate.phoneType==PhoneType.IPHONE_6_P{
//如果想要得到的orign.y 是 16 + textview的高度的操作,textview与上间距距离是8,
comment.frame=CGRectMake(0,self.view.frame.height-16-comment.commenttext.frame.height,self.view.frame.width,16+comment.commenttext.frame.height)
}
else{
comment.frame=CGRectMake(0,self.view.frame.height-16-comment.commenttext.frame.height,self.view.frame.width,16+comment.commenttext.frame.height)
}
在键盘监听事件里改变他的frame
这个frame 在键盘监听里面实现
if let call = callcommentframe{
call()
}
this?.comment.commenttext.callcommentframe={
UIView .animateWithDuration(0.2, animations: { () -> Void in
weak var this = self
this?.comment.frame=CGRectMake(0,keyboardFrame.origin.y - 16 - (this?.comment.commenttext.frame.height)!,self.view.frame.width,16+(this?.comment.commenttext.frame.height)!)
}, completion: nil)
}