Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion GKClasses/GKImageCropViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
}

Expand Down