Handle long press on back buttons

This commit is contained in:
aringenbach
2022-06-21 15:09:19 +02:00
committed by aringenbach
parent 3eff84f3c7
commit 137d840d11
16 changed files with 46 additions and 60 deletions
@@ -69,11 +69,11 @@
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * _Nonnull action)
{
// Hide back button title
mxkViewController.navigationItem.backBarButtonItem =[[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:nil action:nil];
[self fetchWidgetURLAndDisplayUsingWidget:widget canPresentServiceTerms:YES];
}];
// Hide back button title
[mxkViewController vc_removeBackTitle];
[self fetchWidgetURLAndDisplayUsingWidget:widget canPresentServiceTerms:YES];
}];
[self.alertController addAction:alertAction];
}