Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- BOOL enabled = YES;
- - (void)toggleState {
- self.enableSwitch.enabled = YES;
- HBPreferences *preferences = [[HBPreferences alloc] initWithIdentifier: @"com.iOSthemem0d.FloatyTabPrefs"];
- if ([[preferences objectForKey:@"enableAll"] isEqual: @(NO)]) {
- enabled = YES;
- [preferences setBool:enabled forKey: @"enableAll"];
- } else if ([[preferences objectForKey:@"enableAll"] isEqual: @(YES)]) {
- enabled = NO;
- [preferences setBool:enabled forKey: @"enableAll"];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment