2012-05-25 131 views
1

我已經創建了一個應用程序使用基於選項卡的應用程序。通過在第一視圖中選擇一個按鈕controller.xib第二視圖controller.xib中的圖像必須加載。我有第二個視圖controller.xib但問題是如果我選擇第一選項卡沒有被加載。 這是我在firstview.controller.hxib加載但前一個視圖控制器未加載?

@property (unsafe_unretained, nonatomic) IBOutlet UIButton *aboutus; 
- (IBAction)showabout:(id)sender; 

firstviewcontroller.m

- (IBAction)showabout:(id)sender { 
[[NSBundle mainBundle] loadNibNamed:@"SecondViewController" owner:self options:nil];} 

回答

0

代碼試試這個:

- (IBAction)showabout:(id)sender 
{ 
SecondViewController *scv = [[SecondViewController alloc]initWithNibName:@"SecondViewController" bundle:nil]; 
[self.view addSubview:scv.view]; 
[scv release]; 
} 
+0

但如果我嘗試這一點,說未聲明的標識符 'SCV'。該怎麼辦?... – Dany