Question

I'm developing a CydiaSubstrate tweak and I would like to know how to disable the blur effect that appears on the lockscreen when we type the passcode. Does anyone have an idea ?

Many thanks in advance !

Était-ce utile?

La solution

I found out how to do this thanks to a subredditer of /r/jailbreakdevelopers. So the code to do that is the following :

%hook SBLockOverlayStyleProperties

-(float)blurRadius {
    return 0;
}

%end

Any way, thanks for those who have tried to help me !

Have a nice day :)

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top