Skip to content

Instantly share code, notes, and snippets.

@Experiment5X
Created December 29, 2013 22:32
Show Gist options
  • Save Experiment5X/8175591 to your computer and use it in GitHub Desktop.
Save Experiment5X/8175591 to your computer and use it in GitHub Desktop.
Change the secondary color theme in the music app on iOS 7 to be the aqua-blue color instead of that ugly pink.
#import <UIKit/UIKit.h>
@interface MAAppDelegate
@property (nonatomic,retain) UIWindow * window;
-(void)applicationDidFinishLaunching:(id)arg1;
@end
%hook MAAppDelegate
-(void)applicationDidFinishLaunching:(id)arg1
{
%orig;
self.window.tintColor = [[UIColor alloc] initWithRed:0 green:0.478431 blue:1 alpha:1];
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment