2012-12-11 54 views
0

我需要對另一個人代碼進行一些更新。我正在嘗試向現有的UIViewController添加自定義視圖。我的代碼是:錯誤嘗試添加視圖到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

這是

[self.view addSubview:bView]; 

[self.view addSubView:bView]; 

(在addSubview無資本V)。

+0

doh - thx已經有一段時間了;必須等待接受 – timpone

相關問題