Burada birkaç denemeden sonra istediğim şey için nasıl çalıştıracağım. Ben de bunu deniyordum. - Resimli bir görüşüm var. ve görüntünün tam ekran görüntülenmesini istedim. - TabBar'lı bir navigasyon denetleyicim de var. Yani bunu da saklamam gerekiyor. - Ayrıca, temel gereksinim sadece saklanmak değil, aynı zamanda gösterme ve gizleme sırasında da solma etkisine sahip olmaktı.
Bu şekilde çalıştırdım.
Adım 1 - Bir resmim var ve kullanıcı bu resme bir kez dokunuyor. Ben bu hareketi yakalamak ve yeni içine itmek imageViewController
, onun içinde, imageViewController
tam ekran görüntü istiyorum.
- (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];
}
Adım 2 - Aşağıdaki tüm bu adımlar ImageViewController'da
Adım 2.1 - ViewDidLoad'da navBar'ı gösterin
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
NSLog(@"viewDidLoad");
[[self navigationController] setNavigationBarHidden:NO animated:YES];
}
Adım 2.2 - In viewDidAppear
, gecikmeli bir zamanlayıcı görevi ayarlayın (1 sn gecikme için ayarladım). Ve gecikmeden sonra solma efekti ekleyin. Solmayı kullanmak için alfa kullanıyorum.
- (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.
}
adım 2.3 - altında viewWillAppear
, resme singleTap hareketi ekleyin ve navBar'ı yarı saydam yapın.
- (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];
}
Adım 3 - Son olarak viewWillDisappear
, tüm şeyleri geri koyduğunuzdan emin olun
- (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];
}