+ UIActionSheet *sheet([[[UIActionSheet alloc]
+ initWithTitle:@"Optimize Themes"
+ buttons:[NSArray arrayWithObjects:@"Optimize", @"Cancel", nil]
+ defaultButtonIndex:1
+ delegate:self
+ context:@"optimize"
+ ] autorelease]);
+
+ [sheet setBodyText:@"Please note that this setting /replaces/ the PNG files that came with the theme. PNG files that have been iPhone-optimized cannot be viewed on a normal computer unless they are first deoptimized. You can use Cydia to reinstall themes that have been optimized in order to revert to the original PNG files."];
+ [sheet setNumberOfRows:1];
+ [sheet setDestructiveButtonIndex:0];
+ [sheet popupAlertAnimated:YES];
+}
+
+- (void) _optimizeThemes {