横向 UIPageControl
我已经使用 UIPageControl 和 ScrollView 一起浏览了 Apple 的示例代码。我使用 viewControllers 而不是 Views 创建了相同的内容。现在,当我将方向从 Potrait 更改为 LandScape 时,ScrollView 会更改其方向,但 UIPageControl 保持在相同位置:( 并且不是在水平滑动中更改页面,而是在垂直滑动中更改页面
我希望 UIPageControl 更改水平上的页面滑动并在风景模式下
可以吗???
I've gone through the Apple's Sample Code using UIPageControl and ScrollView togther. I've created the same using viewControllers instead of Views. Now when i change the orientation from Potrait to LandScape, the ScrollView changes its orientation but UIPageControl remain in same position :( and instead of changing page in horizontal Swipe,it changes the page in the Vertical swipe
I want the UIPageControl to change page on horizontal swipe and in LandScape mode.
is it possible??? :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我现在明白了...:)
UIPageControl 应用程序使用 window.xib,我创建了一个新应用程序,并在 UIViewController 上应用了相同的代码,并且它有效。.
另外,不要忘记将垂直弹跳属性设置为“NO” ,使其水平滑动..
:)
I got it now... :)
The UIPageControl app uses window.xib, I created a new app with the same code applied on the UIViewController and it worked..
Also dun forget to turn vertical bounce property to "NO", to make it slide horizontally..
:)