如何在iPad/iPhone中实现垂直分页控制
我知道实现水平页面控制的过程。但我非常想知道我们是否可以垂直实现页面控制。例如,如果用户向上滑动,他会转到第二页,然后页面控件的第二个点会突出显示。 (记住 - 在这种情况下页面控件是垂直的)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
pageControl.transform = CGAffineTransformMakeRotation(M_PI_2);
还不够吗?Wouldn't
pageControl.transform = CGAffineTransformMakeRotation(M_PI_2);
suffice?如果您引用的是 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.一种方法是
旋转滚动视图 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