我在笔尖文件中有2个视图以及一些标签和文本字段。我想制作该视图的多个副本并添加一个scrollview。当我开始在滚动视图中添加视图时,它会添加到滚动视图的顶部。帮助将不胜感激。
提前致谢。
最佳答案
如果要一个接一个地添加视图,则必须计算视图的高度并修改要添加到滚动中的每个新视图的框架。例如,如果您的视图高度为100px,则必须像这样添加它:
// Number of views added to the scroll
NSUInteger numberOfViews = 0;
// View loaded from XIB
theNewView.frame = CGRectMake(theNewView.frame.origin.x,
theNewView.frame.origin.y + numberOfViews*theNewView.frame.size.height,
theNewView.frame.size.width,
theNewView.frame.size.height);
// Add the view to the scroll and increment the number of views
[scrollView addSubview:theNewView];
numberOfViews++;
关于iphone - ScrollView中的 View 的多个副本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8602044/