我有一个带有包含UICollectionViewCellUITextView。我希望单元格的大小取决于TextView的高度(这样就不需要滚动,并且所有文本始终可见)。
我正在尝试:

    func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {

    if (indexPath.row < myComments!.count) {

        if let messageText = myComments![indexPath.row].text  {
            let size = CGSizeMake(self.view.frame.width / 2, 100)
            let options = NSStringDrawingOptions.UsesFontLeading.union(.UsesLineFragmentOrigin)
            let estimatedFrame = NSString(string: messageText).boundingRectWithSize(size, options: options, attributes: [NSFontAttributeName: UIFont.systemFontOfSize(14)], context: nil)
            return CGSizeMake(view.frame.width, estimatedFrame.height + 50)
        }
    }
    return CGSizeMake(view.frame.width, 100)

}

但是它不是真的工作。有时高度过大,有时过小,我仍然需要滚动。

最佳答案

使用TextView的sizeThatFits方法。它精确计算出UITextView所需的大小。

关于ios - 取决于UITextView的集合 View 单元格大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39430656/

10-16 19:18