我UITextView
中,在包括图像/( UIImageView
)。
但是,当我想看到它是无法看到图像/滚动,
我中实现的逻辑,以与各自的动态地增加滚动内容大小的文字的大小,
- (void)scrollViewDidScroll:(UIScrollView *)scrollview
{
if (scrollview.contentOffset.y >= scrollview.contentSize.height - scrollview.frame.size.height)
{
CGSize s = [messageView.text sizeWithFont:[UIFont systemFontOfSize:25] //define your textview font size
constrainedToSize:CGSizeMake(self.view.bounds.size.width - 40, MAXFLOAT) // - 40 For cell padding
lineBreakMode:UILineBreakModeWordWrap];
// To increase the text view scroll content to display image also
[scrollview setContentSize:CGSizeMake(200, s.height+150)];
}
}
但是,当在文本视图文本超过其(TextView的)边界仅在启动滚动。
我无法看到完整的图像,如果文本是在边界(没有线可以在文本视图适合)
How to set scroll size when touch / starts scrolling on textview
,,