We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have this code to do so
@interface BookmarkFavoritesCollectionView : UICollectionView @end @interface VibrantLabelView: UIView @property (nonatomic, retain) UIColor* nonVibrantColor; @end /* @interface BookmarkFavoriteView : UIView //MSHookIvar<VibrantLabelView*>(self, "_titleLabel") @end */ %hook BookmarkFavoritesCollectionView - (void)layoutSubviews { %orig; self.backgroundColor = [UIColor blackColor]; } %end %hook VibrantLabelView - (void)layoutSubviews { %orig; self.nonVibrantColor = [UIColor colorWithRed:1 green:0 blue:0.17 alpha:1]; } %end
I've tried to add it but it seems to fail and all the preferences fail to load
The text was updated successfully, but these errors were encountered:
Might add this in version 1.7, will have to see.
Sorry, something went wrong.
No branches or pull requests
I have this code to do so
I've tried to add it but it seems to fail and all the preferences fail to load
The text was updated successfully, but these errors were encountered: