Created
December 29, 2013 22:32
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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