iPhone 自定义页面控制按钮
是否可以使用自定义按钮而不是页面控制点来控制页面控制器?类似于js中的jQuery滑块?
Is it possible to control a page controller with custom buttons instead of the Page control dots? Similar to a jQuery slider in js?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“页面控制器”是什么意思? iPhone SDK中没有这样的东西。
UIPageControl
是一个非常愚蠢的控件,它与通常显示其页面的滚动视图没有任何连接。开发人员必须手动保持它们同步。因此,使用您自己的自定义页面控制视图并手动将其与滚动视图同步是完全没有问题的。What do you mean by "page controller"? There is no such thing in the iPhone SDK.
UIPageControl
is a very dumb control that has no connection to the scroll view whose page it usually displays. The developer has to manually keep them in sync. So it is no problem at all to use your own custom page control view and manually sync it with a scroll view.