contentInset UITextView. , UITextView , , .
, , sizeWithFont, . , - iOS Development: Do Do It It Wrong, NSString , , a UIView . UIView, UILabel, UIButton .., , . UITextLabel .
:
# 2: - [NSString sizeWithFont:...]
iOS 7 promises UITextView , textContainerInset. ?
, , UITextView UIScrollView. , contentSize , view bounds, , .
contentSize bounds , , UIScrollView , , .
! 17.f. - - . , :
static const CGFloat kArbritaryHeight = 17.f;
CGFloat adjustedContentHeight = myTextView.contentSize.height - kArbritaryHeight;
CGFloat boundsHeight = CGRectGetHeight(myTextView.bounds);
BOOL tooMuchContent = adjustedContentHeight > boundsHeight;
if (tooMuchContent)
{
myTextView.scrollEnabled = YES;
}
else
{
myTextView.scrollEnabled = NO;
}