我正在为 Ipad 开发应用程序。在这个应用程序中,我的第一类 Xib 上有一个 UIButton,现在我想在按钮点击的第一类 XIB 中添加第二类 XIB。我知道如何调用第二类 XIB。这是像这样..
-(IBAction)displaysecondclass
{
secondview *sec=[[secondview alloc] initWithNibName:@"secondview" bundle:nil];
[self presentModalViewController:sec animated:YES];
[sec release];
}
但我不想去二等舱,我需要像这样在 firstview 上显示二等舱 XIB。
-(IBAction)displaysecondclass
{
secondview *sec=[[secondview alloc] initWithNibName:@"secondview" bundle:nil];
[self.view addSubView:sec];
}
谁能帮我提前在第一个 view.thanx 中添加第二类 xib。