在我的应用程序中,我采用了 textview 和 imageview。基于 textview 中的内容,我们如何管理滚动视图的内容大小?
问问题
335 次
2 回答
0
假设您希望内容大小至少足够大以滚动整个内容,您可以通过添加来textview
确定正确的大小,然后将 设置为类似textView
scrollview
contentSize
scrollPanel.contentSize = CGSizeMake( txtView.frame.origin.x + txtView.frame.size.width, txtView.frame.origin.y + txtView.frame.size.height)
这会将内容宽度设置为与 一样宽txtView
,加上左侧定位偏移量,并且高度与txtView
的高度加上它与 . 顶部的距离相同scrollPanel
。
于 2012-09-24T22:10:55.390 回答
0
// scrollPanel fit to the text view
scrollPanel.frame=self.view.frame (or) view.frame;
scrollPanel.contentSize = CGSizeMake(textview.frame.width,textview.frame.height);
于 2012-09-25T04:38:18.857 回答