ビューをシミュレートするビューコントローラーがあります。firstViewController と loginViewController があります。これは、firstViewcontroller の上に loginViewontroller をポップアップする方法のコードです。
firstViewController.m で
LoginViewController *login = [[LoginViewController alloc]initWithNibName:@"LoginViewController" bundle:NULL];
[self presentModalViewController:login animated:YES];
loginViewController には、次の関数があります。
-(void)initialDelayEnded {
self.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001);
self.view.alpha = 0.0;
[UIView animateWithDuration:1.0/1.5 animations:^{
self.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 1.1, 1.1);
}completion:^(BOOL complete){
[UIView animateWithDuration:1.0/2 animations:^{
self.view.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.9, 0.9);
}completion:^(BOOL complete){
[UIView animateWithDuration:1.0/2 animations:^{
self.view.transform = CGAffineTransformIdentity;
}];
}];
}];
}
firstViewcontroller には背景画像があります。私が今やりたいことは、loginViewcontroller がポップアップ表示され、画像がまだ表示されていることです。
誰でも私を助けることができますか?
前もって感謝します。