diff --git a/FlashBack.xcworkspace/xcuserdata/aaron.xcuserdatad/UserInterfaceState.xcuserstate b/FlashBack.xcworkspace/xcuserdata/aaron.xcuserdatad/UserInterfaceState.xcuserstate index 9014985..a18abea 100644 Binary files a/FlashBack.xcworkspace/xcuserdata/aaron.xcuserdatad/UserInterfaceState.xcuserstate and b/FlashBack.xcworkspace/xcuserdata/aaron.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/FlashBack/Base.lproj/Main.storyboard b/FlashBack/Base.lproj/Main.storyboard index 3cfaaea..e2e5dbc 100644 --- a/FlashBack/Base.lproj/Main.storyboard +++ b/FlashBack/Base.lproj/Main.storyboard @@ -23,7 +23,7 @@ - + @@ -61,7 +61,7 @@ - + @@ -323,7 +323,7 @@ - + @@ -363,7 +363,7 @@ - + diff --git a/FlashBack/ViewController.m b/FlashBack/ViewController.m index 34136db..684747a 100755 --- a/FlashBack/ViewController.m +++ b/FlashBack/ViewController.m @@ -344,70 +344,6 @@ NSString *backupNameSelected; } } -- (IBAction)helpMenu:(id)sender { - - UIAlertController * tutorialAlert= [UIAlertController - alertControllerWithTitle:@"Help" - message:@"Create Backup (+): This will prompt you to enter a name for the backup which will be displayed in the box above.\n\nRestore (↺): This will revert your settings, wallpaper, and Icon Layout to the selected setup.\n\nUpdate (↑↓): This will overwrite the selected backup to cleanly update it.\n\nPackage (File Icon): This will generate a package in DEB format for you to share or back up for later, including installed tweaks.\n\nDelete (Trash Icon): This will delete the selected backup. These backups cannot be recovered!" - preferredStyle:UIAlertControllerStyleAlert]; - - UIAlertAction* ok = [UIAlertAction - actionWithTitle:@"ok" - style:UIAlertActionStyleDefault - handler:^(UIAlertAction * action) - { - [tutorialAlert dismissViewControllerAnimated:YES completion:nil]; - - - UIAlertController * infoAlert= [UIAlertController - alertControllerWithTitle:@"Known issues" - message:@"\nFor bug reports, please contact me via Twitter or the email available in the next pop-up dialogue.\n\nIf you have issues with the wallpaper, apply your wallpaper with AutoWall from https://jb365.github.io/ and update the backup.\n\nCredit for the DRM goes to @kushdabush on twitter" - preferredStyle:UIAlertControllerStyleAlert]; - - UIAlertAction* okay = [UIAlertAction - actionWithTitle:@"ok" - style:UIAlertActionStyleDefault - handler:^(UIAlertAction * action) - { - [infoAlert dismissViewControllerAnimated:YES completion:nil]; - - - UIAlertController * contactAlert= [UIAlertController - alertControllerWithTitle:@"Contact Me" - message:@"\nYou can contact my via Twitter or Email\n\n@micahpgomez\n\nmpg13@micahpgomez.dev\n\nhttps://www.micahpgomez.dev" - preferredStyle:UIAlertControllerStyleAlert]; - - UIAlertAction* okey = [UIAlertAction - actionWithTitle:@"ok" - style:UIAlertActionStyleDefault - handler:^(UIAlertAction * action) - { - [contactAlert dismissViewControllerAnimated:YES completion:nil]; - - }]; - - [contactAlert addAction:okey]; - - [self presentViewController:contactAlert animated:YES completion:nil]; - - - - }]; - - [infoAlert addAction:okay]; - - [self presentViewController:infoAlert animated:YES completion:nil]; - - - - }]; - - [tutorialAlert addAction:ok]; - - [self presentViewController:tutorialAlert animated:YES completion:nil]; - -} - - (IBAction)deleteBackup:(id)sender { if (backupNameSelected == nil){