Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static HBPreferences *preferences;
- static BOOL enableAll; // Enable/Disable All Tweaks
- %hook UITabBar
- -(void)layoutSubviews {
- %orig;
- if(enableAll) {
- // Example codes
- }
- }
- %end
- %ctor {
- preferences = [[HBPreferences alloc] initWithIdentifier:@"com.iOSthemem0d.FloatyTabPrefs"];
- //Enable/Disable All Tweaks
- [preferences registerBool:&enableAll default:NO forKey:@"enableAll"];
- }
Advertisement
Add Comment
Please, Sign In to add comment