-
Notifications
You must be signed in to change notification settings - Fork 1
/
Tweak.xm
48 lines (41 loc) · 1.11 KB
/
Tweak.xm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@interface NCNotificationListCell
-(void)cellViewButtonPressed:(id)arg1;
@end
// %hook NCNotificationGroupList
// - (BOOL)notificationViewControllerShouldAllowLongPressGesture:(id)arg1{
// return YES;
// }
// %end
// %hook PLClickPresentationInteractionManager
// -(BOOL)_delegateShouldAllowLongPressGesture {
// return YES;
// }
// %end
// %hook NCNotificationShortLookViewController
// -(BOOL)clickPresentationInteractionManagerShouldAllowLongPressGesture:(id)arg1 {
// return YES;
// }
// -(BOOL)_shouldUseHapticTouch {
// return YES;
// }
// %end
// %hook NCUserNotificationsUIKitDefaults
// -(BOOL)shouldForceHapticTouchForPreview {
// return YES;
// }
// %end
// %hook NCNotificationStructuredListViewController
// -(BOOL)notificationListComponentShouldAllowLongPressGesture:(id)arg1 {
// return YES;
// }
// %end
// %hook PLClickPresentationInteractionManagerDelegate
// -(BOOL)clickPresentationInteractionManagerShouldAllowLongPressGesture:(id)arg1 {
// return YES;
// }
// %end
%hook NCNotificationListCell
-(void)hintSideSwipeForDefaultAction {
[self cellViewButtonPressed: self];
}
%end