diff --git a/GKClasses/GKImageCropViewController.m b/GKClasses/GKImageCropViewController.m index b29f638..c8dde39 100644 --- a/GKClasses/GKImageCropViewController.m +++ b/GKClasses/GKImageCropViewController.m @@ -173,9 +173,12 @@ - (void)viewDidLoad{ [self _setupNavigationBar]; [self _setupCropView]; [self _setupToolbar]; +} +- (void)viewWillAppear:(BOOL)animated{ + [super viewWillAppear:animated]; if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) { - [self.navigationController setNavigationBarHidden:YES]; + [self.navigationController setNavigationBarHidden:YES animated:animated]; } }