我在我的应用程序中使用UIScrollview
和页面控件。我已在view 0
视图中使用view1
整合了3个视图,view2
,UIScroll
和page control
。一切都很顺利。
当我运行应用程序时,我希望View1
应该是默认页面,但它将view0
显示为默认页面。
是否有人帮助如何将view1
作为默认页面?
答案 0 :(得分:2)
在viewDidLoad方法中将scrollview内容偏移量设置为(320,0)。
[scroll setContentOffset:CGPointMake(320, 0)];
答案 1 :(得分:2)
设置UIScrollView
的内容偏移量。你在views
中添加了所有3 UIScrollView
但未设置偏移量。
scr.contentOffset = CGPointMake(view.frame.size.width, 0);