私は Ipad のアプリケーションに取り組んでいます。このアプリケーションでは、最初のクラス Xib に UIButton があります。ボタンのクリックでこの最初のクラス XIB に 2 番目のクラス XIB を追加したいと思います。2 番目のクラス XIB を呼び出す方法を知っています。ちょうどこのような..
-(IBAction)displaysecondclass
{
secondview *sec=[[secondview alloc] initWithNibName:@"secondview" bundle:nil];
[self presentModalViewController:sec animated:YES];
[sec release];
}
しかし、私はセカンドクラスに行きたくないので、このようにファーストビューにセカンドクラスのXIBを表示する必要があります。
-(IBAction)displaysecondclass
{
secondview *sec=[[secondview alloc] initWithNibName:@"secondview" bundle:nil];
[self.view addSubView:sec];
}
事前に最初のview.thanxに2番目のクラスのxibを追加する方法を教えてください。