我已经准备了一个带有关联 Xib 文件的自定义 UIView 子类。在情节提要上,我放置了一个 UIView 并将它的类设置为我的自定义子类。在自定义视图的 initWithCoder: 方法中,我加载 xib 并初始化子视图。这很好用。
现在我想在其他地方使用相同的自定义视图,但我希望我的子视图的布局有所不同。我想在同一个 Xib 文件中创建第二个自定义视图布局,并根据我的哪个视图控制器包含自定义视图加载正确的布局。由于我所有的子视图和所有逻辑都是相同的,只是布局不同,我正在寻找这样的东西:
-(id)initWithCoder:(NSCoder *)aDecoder{
if (self = [super initWithCoder:aDecoder]) {
if (self.subviews.count == 0) {
UINib *nib = [UINib nibWithNibName:NSStringFromClass([self class]) bundle:nil];
UIView *subview;
if ([/*instantiating VC isKindOfClass:viewController1.class]*/) {
subview = [[nib instantiateWithOwner:self options:nil] objectAtIndex:0];
}
else if ([/*instantiating VC isKindOfClass:viewController2.class]*/) {
subview = [[nib instantiateWithOwner:self options:nil] objectAtIndex:1];
}
subview.frame = CGRectMake(0, 0, CGRectGetWidth(self.frame), CGRectGetHeight(self.frame));
subview.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[self addSubview: subview];
}
}
return self;
}
有什么方法可以访问有关正在实例化此自定义视图的视图控制器的信息?