Вопрос

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