1

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

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

第一视图控制器.m

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

1 回答 1

0

尝试这个:

- (IBAction)showabout:(id)sender 
{
 SecondViewController *scv = [[SecondViewController alloc]initWithNibName:@"SecondViewController" bundle:nil];
 [self.view addSubview:scv.view];
 [scv release];
}
于 2012-05-25T10:15:10.467 回答