新しいビューコントローラをロードして、新しいものが下から来ている間に現在のスライドが上がるようにしたいのですが、動作しますがサブビューは表示されません空白のビュー)、どのようにそれを修正するには?カスタムiPhoneのストーリーボードのセグが正しく動作しない
現在のコードは次のとおりです。
-(void)perform {
UIViewController *sourceVC = (UIViewController *) self.sourceViewController;
UIViewController *destinationVC = (UIViewController *) self.destinationViewController;
[UIView animateWithDuration:2.0
animations:^{
destinationVC.view.frame=CGRectMake(destinationVC.view.frame.origin.x, 480, destinationVC.view.frame.size.width, destinationVC.view.frame.size.height);
sourceVC.view.transform=CGAffineTransformMakeTranslation(0, -480);
destinationVC.view.transform=CGAffineTransformMakeTranslation(0, -480);
}];
}
VCは既にアニメーションの中にロードされていますか?なぜVCを使うのですか? Uは個別のビューをアニメートできます... – Injectios
どういう意味ですか? – 1337code