OStack程序员社区-中国程序员成长平台

标题: ios - 从父 View Controller 访问容器 View 中的 UIScrollView 内容偏移量 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 00:04
标题: ios - 从父 View Controller 访问容器 View 中的 UIScrollView 内容偏移量

我在访问 UIScrollViewContentOffset 时遇到问题。我之前对此没有任何问题,但这次 UIScrollView 位于链接到 ViewControllerContainer View 内。

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

MenuViewController => 容器 View => ScrollView1ViewController => ScrollView1

enter image description here

我必须得到它的 ContentOffsetUIScrollView 是使用 ScrollView1ViewController.h 中的 IBOutlet 链接的.

所以我的问题是:是否可以从 MenuViewController.m 中知道 UIScrollViewContentOffset?也许在 MenuViewController.m

中的 ScrollView1ViewController.h 中导入 IBOutlet

ScrollView1ViewController.h

#import <UIKit/UIKit.h>

@interface ScrollView1ViewController : UIViewController <UIScrollViewDelegate>
{
}

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

@end

MenuViewController.m

#import "MenuViewController.h"
#import "ScrollView1ViewController.h"

@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))
    {
        [self.scrollView1 setContentOffset:CGPointMake(270, 0) animated:YES];
    }
}

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

谢谢



Best Answer-推荐答案


我可以看到这一点的一种方法是,如果您创建一个函数以在 ScrollView1ViewController 中返回 ScrollView 的 contentOffset

- (CGRect)returnContentOffSet
{
    return myScrollView.contentOffset;
}

并尝试从 MenuViewController 调用该方法

关于ios - 从父 View Controller 访问容器 View 中的 UIScrollView 内容偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24928958/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4