xib已加载,但以前的视图控制器未加载?

时间:2012-05-25 09:59:21

标签: iphone ios xcode ios5 xcode4

我已经使用基于选项卡的应用程序创建了一个应用程序。通过在第一个视图中选择一个按钮controller.xib图像在第二个视图中,controller.xib必须加载。我有第二个视图controller.xib,但问题是如果我选择第一个标签它没有加载。 这是我在firstview.controller.h中的代码

@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];}

1 个答案:

答案 0 :(得分:0)

试试这个:

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