要让UITextView锚定在UICollectionViewCell的右边,可以使用Auto Layout来实现。以下是一种可行的解决方案:
textView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor).isActive = true
textView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 8).isActive = true
textView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -8).isActive = true
textView.widthAnchor.constraint(greaterThanOrEqualToConstant: 100).isActive = true
textView.widthAnchor.constraint(lessThanOrEqualToConstant: 200).isActive = true
通过以上约束,textView将会锚定在UICollectionViewCell的右边,并适应其内容的宽度。你可以根据具体需求调整约束条件。
以上是一种通过Auto Layout实现UITextView锚定在UICollectionViewCell右边的方法。希望对你有帮助!
领取专属 10元无门槛券
手把手带您无忧上云