评论自动移动到cell体验

2017-04-18  本文已影响19人  leonardni
-(void)inputViewDidShow:(WLCommentInputView *)CommentView orginY:(CGFloat)orginY{
    CGRect rectInTableView = [self.tableView rectForRowAtIndexPath:_commentIndexPath];
    CGRect rect = [self.tableView convertRect:rectInTableView toView:[self.tableView superview]];
    CGFloat maxY = CGRectGetMaxY(rect);
    CGPoint point = self.tableView.contentOffset;
    point.y -= (orginY - maxY);
    [self.tableView setContentOffset:point animated:YES];
}
上一篇下一篇

猜你喜欢

热点阅读