菜鸟教程小白 发表于 2022-12-13 00:04:33

ios - 从父 View Controller 访问容器 View 中的 UIScrollView 内容偏移量


                                            <p><p>我在访问 <code>UIScrollView</code> 的 <code>ContentOffset</code> 时遇到问题。我之前对此没有任何问题,但这次 <code>UIScrollView</code> 位于链接到 <code>ViewController</code> 的 <code>Container View</code> 内。</p>

<p>为了更好地理解我的情况,这里有一个方案和一张图片:</p>

<p>MenuViewController <strong>=></strong> 容器 View<strong>=></strong> ScrollView1ViewController <strong>=></strong> ScrollView1</p>

<p> <img src="/image/LPraq.png" alt="enter image description here"/> </p>

<p>我必须得到它的 <code>ContentOffset</code> 的 <code>UIScrollView</code> 是使用 <code>ScrollView1ViewController.h</code> 中的 <code>IBOutlet</code> 链接的.</p>

<p>所以我的问题是:是否可以从 <code>MenuViewController.m</code> 中知道 <code>UIScrollView</code> 的 <code>ContentOffset</code>?也许在 <code>MenuViewController.m</code></p> 中的 <code>ScrollView1ViewController.h</code> 中导入 IBOutlet

<p><strong>ScrollView1ViewController.h</strong></p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;

@interface ScrollView1ViewController : UIViewController &lt;UIScrollViewDelegate&gt;
{
}

@property (weak, nonatomic)    IBOutlet    UIScrollView    *scrollView1;

@end
</code></pre>

<p><strong>MenuViewController.m</strong></p>

<pre><code>#import &#34;MenuViewController.h&#34;
#import &#34;ScrollView1ViewController.h&#34;

@interface MenuViewController ()
{
}

@property (strong, nonatomic)    ScrollView1ViewController    *sV1VC;
@property (weak, nonatomic)      UIScrollView               *scrollView1;

@end

/***/

- (void)scrollForward
{
    self.offsetPoint = self.scrollView1.contentOffset.x;

    if ((self.offsetPoint == 0))
    {
      ;
    }
}
</code></pre>

<p>如果您需要更多代码和/或图片来更好地理解我的问题,请随时问我。</p>

<p>谢谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我可以看到这一点的一种方法是,如果您创建一个函数以在 ScrollView1ViewController 中返回 ScrollView 的 contentOffset</p>

<pre><code>- (CGRect)returnContentOffSet
{
    return myScrollView.contentOffset;
}
</code></pre>

<p>并尝试从 MenuViewController 调用该方法</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从父 ViewController 访问容器 View 中的 UIScrollView 内容偏移量,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24928958/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24928958/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从父 View Controller 访问容器 View 中的 UIScrollView 内容偏移量