UIPageControl 和 UIScrollView 帮助
我需要 UIPageControl
方面的帮助。在我的应用程序中,我制作了一个 UISCrollView
宽度:640
高度:300
启用分页
仅水平滚动
- (void)viewDidLoad
{
[ScrollView setContentSize:CGRectMake (640, 300)];
[super viewDidLoad];
}
水平滚动分页我希望 UIPageControl 在用户滚动视图并超过 320 像素时更改页面数量,就像在 iPhone Springboard 中一样。
I need help with UIPageControl
. In my application I've made an UISCrollView
Width: 640
Height: 300
Paging enabled
Horizontal Scroll Only
- (void)viewDidLoad
{
[ScrollView setContentSize:CGRectMake (640, 300)];
[super viewDidLoad];
}
I want UIPageControl
to change the number of the page when the users scroll the view and surpass 320 pix, like in the iPhone Springboard.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试本教程,
http://www.edumobile。 org/iphone/iphone-programming-tutorials/pagecontrol-example-in-iphone/
Try this tutorial,
http://www.edumobile.org/iphone/iphone-programming-tutorials/pagecontrol-example-in-iphone/