gpt4 book ai didi

iphone - 我们如何在主类 Xib 中添加子类 Xib?

转载 作者:行者123 更新时间:2023-11-28 22:55:11 26 4
gpt4 key购买 nike

我正在处理 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。

最佳答案

将按钮代码更改为

-(IBAction)displaysecondclass
{
secondview *sec=[[secondview alloc] initWithNibName:@"secondview" bundle:nil];
[self.view addSubView:sec.view];
}

请注意,一旦您不再需要 View Controller ,您将需要添加额外的函数来释放它

关于iphone - 我们如何在主类 Xib 中添加子类 Xib?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10947453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com