mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-03-11 17:15:32 +00:00
Added Clear Notifications Button (Settings.xm)
a new button that will fix the issue for uYouEnhanced when Sideloading it. When interacting with this button it should help clear the notifications 🔔 Fixes #603
This commit is contained in:
parent
7e45d1dcc1
commit
5f5230609d
1 changed files with 13 additions and 0 deletions
|
|
@ -249,6 +249,19 @@ extern NSBundle *uYouPlusBundle();
|
|||
];
|
||||
[sectionItems addObject:appIcon];
|
||||
|
||||
YTSettingsSectionItem *clearNotifications = [%c(YTSettingsSectionItem)
|
||||
itemWithTitle:LOC(@"Clear Notifications")
|
||||
titleDescription:LOC(@"Force clear all notifications (Recommended if uYouEnhanced is Sideloaded)")
|
||||
accessibilityIdentifier:nil
|
||||
detailTextBlock:nil
|
||||
selectBlock:^BOOL (YTSettingsCell *cell, NSUInteger arg1) {
|
||||
[[UIApplication sharedApplication] cancelAllLocalNotifications];
|
||||
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
|
||||
return YES;
|
||||
}
|
||||
];
|
||||
[sectionItems addObject:clearNotifications];
|
||||
|
||||
# pragma mark - App theme
|
||||
SECTION_HEADER(LOC(@"THEME_OPTIONS"));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue