我有一个非常简单的UIViewController子类。我已将图像视图设置为其视图。这需要整个窗口。当我创建一个标签并像这样添加它时
UILabel *titleLabel=[self labelWithText:@"Some text"];
[self.imageView addSubview: titleLabel];
标签未出现。但是,如果我像这样添加它
[self.view addSubview: titleLabel];
它有效,我看到标签已添加到视图中。 UIImageView是UIView的子类,它响应选择器addSubview:。那么为什么这不起作用?