mirror of
https://github.com/khanhduytran0/aintuitweaks.git
synced 2026-06-07 15:33:53 +02:00
15 lines
269 B
Plaintext
15 lines
269 B
Plaintext
|
|
%group Hook_SpringBoard_iOS18
|
|
%hook _SBContinuitySessionStateMachine
|
|
- (void)_moveToInvalidStateForReasons:(id)reasons postToDelegate:(BOOL)post {
|
|
// Do nothing
|
|
}
|
|
%end
|
|
%end
|
|
|
|
%ctor {
|
|
if (@available(iOS 18.0, *)) {
|
|
%init(Hook_SpringBoard_iOS18);
|
|
}
|
|
}
|