如何确定UIVIew的终点?我知道你可以做self.descriptionTextView.bounds.origin.y
,但这并没有考虑到视图的大小。
我可以执行以下操作:self.descriptionTextView.bounds.origin.y+(unsigned long)listingShortDescription.length+10
感谢您的帮助
答案 0 :(得分:1)
CGRectMaxYEdge(self.descriptionTextView.frame);
如果文本视图的底边在其父视图的坐标空间中,这将为您提供坐标。
答案 1 :(得分:1)
self.descriptionTextView.bounds.origin.y会给你0 由于边界有CGPointZero的起源。 改用框架。 self.descriptionTextView.frame.origin.y + self.descriptionTextView.frame.size.height
更好的是:
CGRectGetMaxY(self.descriptionTextView.frame)
答案 2 :(得分:0)