尝试将视图添加到UIViewController的视图时出错

时间:2012-12-11 15:22:57

标签: ios

我需要对其他人代码进行一些更新。我正在尝试向现有UIViewController添加自定义视图。我的代码是:

- (void)viewDidLoad
{
    [super viewDidLoad];
    CGRect viewFrame=CGRectMake(50, 50, 200, 200);
    MyImageView *bView=[[MyImageView alloc] initWithFrame:viewFrame];

    [bView setBackgroundColor:[UIColor redColor]];
    [self.view addSubView:bView];

    // Do any additional setup after loading the view from its nib.
}

我收到以下错误:

enter image description here

我认为这应该有效。是否可以通过这种方式添加自定义视图?关于如何解决的任何想法?

1 个答案:

答案 0 :(得分:1)

这是

[self.view addSubview:bView];

[self.view addSubView:bView];

(addSubview中没有大写的V)。