菜鸟教程小白 发表于 2022-12-12 12:29:53

iOS 页面 curl 动态过渡 View


                                            <p><p>我正在寻找一种方法来实现 View 之间的页面 curl 过渡。基本上,我有一个 ViewController ,其中有一本书。我要实现书的打开和页面之间的过渡。</p>

<p>我知道 <code>UIPageViewController</code> 的存在,它是页面 curl 过渡样式,我正在寻求实现类似的东西,只应用于 View 。 (在我的 ViewController 上,除了本书之外,我还有其他 View 和按钮。)</p>

<p>我应该能够用手指来回移动页面并能够放开它。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>1) 为要转换的所有 View 创建一个 Controller 数组。 </p>

<blockquote>
<p>NSArray *array = ;</p>
</blockquote>

<p>2) 然后将 ViewController 数组添加到您的 UIPageViewController 对象中。</p>

<blockquote>
<p>[yourPageController setViewControllers:array
      direction:UIPageViewControllerNavigationDirectionForward
      animated:YES
      completion:nil];</p>
</blockquote>

<p>更多引用-
<a href="http://www.techotopia.com/index.php/An_Example_iOS_5_iPhone_UIPageViewController_Application" rel="noreferrer noopener nofollow">http://www.techotopia.com/index.php/An_Example_iOS_5_iPhone_UIPageViewController_Application</a> </p>

<p>有关其他详细信息,请阅读 Apple 的文档</p>

<p> <a href="http://developer.apple.com/library/ios/#documentation/uikit/reference/UIPageViewControllerClassReferenceClassRef/UIPageViewControllerClassReference.html" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#documentation/uikit/reference/UIPageViewControllerClassReferenceClassRef/UIPageViewControllerClassReference.html</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 页面 curl 动态过渡 View ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17558946/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17558946/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 页面 curl 动态过渡 View