textVIew 在输入时 设置行数并且自适应高度 上移动

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()

        }

        

        //在设置textViewframe

        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)

                }



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值