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 !

有帮助吗?

解决方案

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 :)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top