如何在iPad/iPhone中实现垂直分页控制

发布于 2024-11-09 19:30:31 字数 120 浏览 3 评论 0原文

我知道实现水平页面控制的过程。但我非常想知道我们是否可以垂直实现页面控制。例如,如果用户向上滑动,他会转到第二页,然后页面控件的第二个点会突出显示。 (记住 - 在这种情况下页面控件是垂直的)

I am aware of the procedure to implement horizontal page control. But i am very curios to know if we can implement page control VERTICALLY. For example, if the user swipes up, he goes to 2nd page and then the 2nd dot of the pagecontrol gets highlighted. (Remember - The page control is vertical in this case)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

辞慾 2024-11-16 19:30:31

pageControl.transform = CGAffineTransformMakeRotation(M_PI_2); 还不够吗?

Wouldn't pageControl.transform = CGAffineTransformMakeRotation(M_PI_2); suffice?

很快妥协 2024-11-16 19:30:31

如果您引用的是 UIPageControl 项目,那么您必须自己创建它,因为不存在(不过可能作为 github 上的一个小库存在)

如果您正在寻找页面滚动效果(您可以向上和向下滑动来导航)全屏页面),那么您将不得不查看将 pagingEnabled 属性设置为 YES 的标准 UIScrollView。

If you are refering to the UIPageControl item, then you will have to create it yourself as none exists (could exist as a small library on github though)

If you are looking for the page scrolling effect (you can swiperup & down to navigate through full screen pages), then you will have to look at a standard UIScrollView with the pagingEnabled property set to YES.

第七度阳光i 2024-11-16 19:30:31

一种方法是
旋转滚动视图 90° ,旋转内容 -90° ,应该创建一种将框架从一个角度转换为另一个角度的便捷方法

one method is to
rotate a scrollview 90° , rotate contents -90°, should created a convenience method for converting frame from one angle to another

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文