viewDidLoad 上的视图出口为零
Posted
技术标签:
【中文标题】viewDidLoad 上的视图出口为零【英文标题】:View outlets are nil on viewDidLoad 【发布时间】:2016-04-20 22:01:21 【问题描述】:我的文件所有者有 3 个出口,它们在 viewDidLoad 上都是 nil...
__weak IBOutlet UIView *mainImagePlaceholderView;
__weak IBOutlet UILabel *mainImageLabel;
__weak IBOutlet UIView *imageFilmstripPlaceholderView;
这些位于我的 .m 文件中,...
@implementation iRpImageViewerViewController
...
__weak IBOutlet UIView *mainImagePlaceholderView;
__weak IBOutlet UILabel *mainImageLabel;
__weak IBOutlet UIView *imageFilmstripPlaceholderView;
...
我的类是 iRpImageViewerViewController.xib
在 IB 中,“文件所有者自定义类”是“iRpImageViewerViewController.m”
在 IB 中,nib 'view custom class' 是 UIView
一切都显示为正确连接。 我已经清理了我的构建文件夹。 我已经清除了我的派生数据文件夹。 我什至试图通过在 init 方法中引用它们并设置它们的背景色来欺骗视图加载。
-(void)viewDidLoad
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
theMainImageGridviewControl = [[IGGridView alloc]initWithFrame:mainImagePlaceholderView.frame style:IGGridViewStyleSingleCellPaging];
// Set additional properties to configure the grid view
theMainImageGridviewControl.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
theMainImageGridviewControl.selectionType = IGGridViewSelectionTypeCell;
theMainImageGridviewControl.contentInset = UIEdgeInsetsZero;
theMainImageGridviewControl.allowHorizontalBounce = NO;
theMainImageGridviewControl.alwaysBounceHorizontal = NO;
theMainImageGridviewControl.alwaysBounceVertical = NO;
[mainImagePlaceholderView addSubview:theMainImageGridviewControl];
// Setting a breakpoint here reveals that all the outlets are nil
[self addAChildViewController:theFilmstripViewController toViewWithTag:imageFilmstripPlaceholderView.tag];
[self constructAndConfigurePrimaryImageMarker];
【问题讨论】:
在哪里定义这些网点?您是否尝试过@property(nonatomic, weak) IBOutlet UIView *name
在您的 .h 文件中定义?
它们不在我的 .h 文件中,它们在我的 .m 文件中,就在方括号 内的 @implementation SomeClass 下方
【参考方案1】:
不确定您是如何创建 XIB 和视图控制器的,但您是否尝试将以下内容添加到您为视图控制器调用的初始化程序中:
self = [super initWithNibName:@"iRpImageViewerViewController" bundle:nil];
【讨论】:
以上是关于viewDidLoad 上的视图出口为零的主要内容,如果未能解决你的问题,请参考以下文章
Interface Builder 将控制出口设置为零——为啥?
ViewController 的子视图的 IBOutlets 在 Storyboard 的 viewDidLoad 中为零