|
@@ -805,7 +805,26 @@
|
|
|
|
|
|
- (void)handleTouchTabbarCenter:(id)sender
|
|
|
{
|
|
|
-
|
|
|
+ AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithView:self.window.rootViewController.view title:@""];
|
|
|
+
|
|
|
+ [actionSheet addButtonWithTitle:NSLocalizedString(@"Info", nil)
|
|
|
+ image:[UIImage imageNamed:@"passcode"]
|
|
|
+ type:AHKActionSheetButtonTypeDefault
|
|
|
+ handler:^(AHKActionSheet *as) {
|
|
|
+ if (_activeMain)
|
|
|
+ [_activeMain returnCreate:returnCreateFolderPlain];
|
|
|
+ }];
|
|
|
+
|
|
|
+ [actionSheet addButtonWithTitle:NSLocalizedString(@"Add to Favorites", nil)
|
|
|
+ image:[UIImage imageNamed:@"password"]
|
|
|
+ type:AHKActionSheetButtonTypeDefault
|
|
|
+ handler:^(AHKActionSheet *as) {
|
|
|
+ if (_activeMain)
|
|
|
+ [_activeMain returnCreate:returnCreateFotoVideoPlain];
|
|
|
+ }];
|
|
|
+
|
|
|
+
|
|
|
+ [actionSheet show];
|
|
|
}
|
|
|
|
|
|
- (void)updateApplicationIconBadgeNumber
|