Skip to content

Instantly share code, notes, and snippets.

@S1ReX
Created November 13, 2012 13:08
Show Gist options
  • Save S1ReX/4065684 to your computer and use it in GitHub Desktop.
Save S1ReX/4065684 to your computer and use it in GitHub Desktop.
@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