Created
November 13, 2012 13:08
-
-
Save S1ReX/4065684 to your computer and use it in GitHub Desktop.
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
@interface SBBulletinBannerItem : NSObject | |
@end | |
%hook SBBannerView | |
-(id)initWithItem:(SBBulletinBannerItem *)item { | |
UIColor *myColor = [UIColor blueColor]; | |
UIImageView *bannerView = MSHookIvar<UIImageView *>(self, "_bannerView"); | |
bannerView.backgroundColor = underlayView.backgroundColor = myColor; | |
} | |
%end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment