菜鸟教程小白 发表于 2022-12-13 01:45:53

iphone - 我们可以以编程方式将 iPhone 照片库滚动到底部吗


                                            <p><p>在我的应用程序中,我需要从照片库中选择图像,其中有数百张照片。问题是相机拍摄的最新照片,保存在照片库的底部,因此,我必须向下滚动以选择我拍摄的最新照片。有什么方法可以将 ImagePickerViewController 的 View 滚动到底部,或者我可以将最新的图片存储在顶部吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>[self presentViewController:imagePickerController animated:YES completion:^()
      {
               UIView *imagePickerView = imagePickerController.view;
               UIView *view = ;
               while (!] &amp;&amp; view != nil)
               {
                  view = ;
               }
               if (])
               {
                   UIScrollView *scrollView = (UIScrollView *) view;
                   CGPoint contentOffset = scrollView.contentOffset;
                   CGFloat y = MAX(contentOffset.y, .height-scrollView.frame.size.height);
                   CGPoint bottomOffset = CGPointMake(0, y);
                   ;
               }
       }];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 我们可以以编程方式将 iPhone 照片库滚动到底部吗,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15634825/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15634825/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 我们可以以编程方式将 iPhone 照片库滚动到底部吗