我有一个 UIScrollView,它在 UIStoryboard 中以模式形式添加。我想从控制器 B 访问 UIViewController ViewController 中的 UIScrollView,我尝试了以下代码:
ViewController *linkToA;
linkToA = [[ViewController alloc] init];
linkToA = (ViewController*)self.presentingViewController;
linkToA.groupPass.text = @"cool party ajdaj";
[linkToA.scroll1.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
该代码不会给出错误,但不会做任何事情。
我以这种方式导入控制器:
#import "ViewController.h"
在 ViewController.h 我有:
@property (strong, nonatomic) IBOutlet UIScrollView *scroll1;
问题是什么??