我正在尝试完成与Instagrams类似的评论UITextView
。我之前使用UITableView
执行了此操作,并在用户输入注释时使用beginUpdates
和endUpdates
重新加载页脚大小。使用我的collectionView
我尝试了一些不同的方法来重新加载我的页脚,但视图滚动到其原始位置,将textView隐藏在键盘下方。我试图将UITextView
保持在键盘上方并为每个新行扩展它。
- (void)textViewDidChange:(UITextView *)textView{
NSInteger numLines;
numLines = textView.contentSize.height/textView.font.lineHeight;
if (numLines > nextLine) {
height = height + 15;
[self.collectionView.collectionViewLayout invalidateLayout];
[footer.commentTextView becomeFirstResponder];
CGPoint scrollPt = CGPointMake(0, 300);
[self.collectionView setContentOffset:scrollPt animated:NO];
nextLine = numLines;
}
}
- (CGSize) collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section{
return CGSizeMake(320, height);
}