UItableview上自定义cell,带有textview,控制uitableview滚动到响应位置,不被键盘挡住

   获取到section和row之后,不能直接付给NSIndexPath对象,因为两个属性是NSIndexPath(UITableView)中定义的只读属性。

  //    NSInteger section = (textView.tag -100)/10;

//    NSInteger row = (textView.tag - 100)%10;

   使用下面方法得到对应的NSIndexpath对象

//    NSIndexPath *path = [NSIndexPath indexPathForRow:row inSection:section];
     滚动到path对应cell的下部

//   [tableV scrollToRowAtIndexPath:path atScrollPosition:UITableViewScrollPositionBottom animated:YES];

    cell对应的path,在这里无法获取

//    NSIndexPath *path = [tableV indexPathForCell:(UITableViewCell*)textView.superview.superview];

     设置tableview显示的位置,这里可以显示到相应位置,上述滚动均无用   

    [tableV setContentOffset:CGPointMake(0, 220)];


  CGRect rect = [tableV convertRect:textView.frame fromView:textView.superview.superview];

    [tableV scrollRectToVisible:rect animated:YES];

   第二种方法,尝试也无效,没有滚动到对应的rect。

 
   最后成功的方法

  //获取text的rect,判断y与键盘位置关系,设置tableview滚动到指定位置
    CGRect rect = [tableV convertRect:textView.frame fromView:textView.superview.superview];
    if (rect.origin.y > tableV.frame.size.height-216-80) {
        [tableV setContentOffset:CGPointMake(0, rect.origin.y)];
    }
    


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值