複数の試行の後、ここで私はそれを私が望んだもののために機能させた方法です。これは私が試していたものです。-画像付きのビューがあります。画像を全画面表示にしたかったのです。-私はtabBarを備えたナビゲーションコントローラも持っています。だから私もそれを隠す必要があります。-また、私の主な要件は、単に隠すだけではなく、見せたり隠したりするときにフェード効果を持たせることでもありました。
これは私がそれを機能させた方法です。
ステップ1-画像があり、ユーザーはその画像を1回タップします。そのジェスチャーをキャプチャして、新しいにプッシュします。imageViewController
そのimageViewController
フルスクリーンイメージが必要です。
- (void)handleSingleTap:(UIGestureRecognizer *)gestureRecognizer {
NSLog(@"Single tap");
ImageViewController *imageViewController =
[[ImageViewController alloc] initWithNibName:@"ImageViewController" bundle:nil];
godImageViewController.imgName = // pass the image.
godImageViewController.hidesBottomBarWhenPushed=YES;// This is important to note.
[self.navigationController pushViewController:godImageViewController animated:YES];
// If I remove the line below, then I get this error. [CALayer retain]: message sent to deallocated instance .
// [godImageViewController release];
}
ステップ2-以下のすべてのステップはImageViewControllerにあります
ステップ2.1-ViewDidLoadで、navBarを表示します
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
NSLog(@"viewDidLoad");
[[self navigationController] setNavigationBarHidden:NO animated:YES];
}
ステップ2.2-でviewDidAppear
、タイマータスクに遅延を設定します(1秒の遅延に設定しています)。そして、遅延の後、フェージング効果を追加します。フェージングを使用するためにアルファを使用しています。
- (void)viewDidAppear:(BOOL)animated
{
NSLog(@"viewDidAppear");
myTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(fadeScreen) userInfo:nil repeats:NO];
}
- (void)fadeScreen
{
[UIView beginAnimations:nil context:nil]; // begins animation block
[UIView setAnimationDuration:1.95]; // sets animation duration
self.navigationController.navigationBar.alpha = 0.0; // Fades the alpha channel of this view to "0.0" over the animationDuration of "0.75" seconds
[UIView commitAnimations]; // commits the animation block. This Block is done.
}
ステップviewWillAppear
2.3-の下で、画像にシングルタップジェスチャーを追加し、navBarを半透明にします。
- (void) viewWillAppear:(BOOL)animated
{
NSLog(@"viewWillAppear");
NSString *path = [[NSBundle mainBundle] pathForResource:self.imgName ofType:@"png"];
UIImage *theImage = [UIImage imageWithContentsOfFile:path];
self.imgView.image = theImage;
// add tap gestures
UITapGestureRecognizer *singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
[self.imgView addGestureRecognizer:singleTap];
[singleTap release];
// to make the image go full screen
self.navigationController.navigationBar.translucent=YES;
}
- (void)handleTap:(UIGestureRecognizer *)gestureRecognizer
{
NSLog(@"Handle Single tap");
[self finishedFading];
// fade again. You can choose to skip this can add a bool, if you want to fade again when user taps again.
myTimer = [NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(fadeScreen) userInfo:nil repeats:NO];
}
ステップ3-最後にviewWillDisappear
、すべてのものを元に戻してください
- (void)viewWillDisappear: (BOOL)animated
{
self.hidesBottomBarWhenPushed = NO;
self.navigationController.navigationBar.translucent=NO;
if (self.navigationController.topViewController != self)
{
[self.navigationController setNavigationBarHidden:NO animated:animated];
}
[super viewWillDisappear:animated];
}