我必须使用 iPhone 中的分页笔尖滚动 3
UIViews
?
我有 3 个视图,所有视图上都有不同的内容。 两种视图具有清晰的视图,一种具有某种形式。那么我该如何滚动分页呢?
阅读 UIScrollView 的文档,并查看
pagingEnabled
属性:http://developer.apple.com/library/ios/#documentation/uikit/reference/UIScrollView_Class/Reference/UIScrollView.html
您可以调整Apple的PageControl示例项目以满足您的需求:https://developer.apple.com/library/ios/#samplecode/PageControl/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007795
这是一个关于如何使用启用分页的滚动视图的好例子,它展示了如何使用 UIScrollView 和 UIPageControl。
http://www.edumobile.org/iphone/iphone-programming-tutorials/pagecontrol-example-in-iphone/
它可能对你有帮助..
[scrollView setContentOffset:CGPointMake(x,y) 动画:NO];