0
ボタンを使ってXIBを切り替えます。私の機能は次のようなものです:XIBの間でスワイプ
-(IBAction)swapViews; {
SecondViewController *second2 =[[SecondViewController alloc
initWithNibName:@"SecondViewController" bundle:nil];
second2.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:second2 animated:YES];
[second2 release];
}
どのように私はXIBの間でスワイプを使用できますか?
しかし、私は同じXIB –
問題なしで多くのXIB多くはないVIEWを持っています。私の編集を見て...私は2つのxibsを読み込み、スクロールビューに配置しています...それはあなたに意味がありますか? – sergio
はいthx brooooo –