Open syedrazackimran opened 5 years ago
if #available(iOS 13.0, *) { locker.isModalInPresentation = true } else { // Fallback on earlier versions } locker.modalPresentationStyle = .fullScreen
i need to present applocker fullscreen i add some codes on
class func present(with mode: ALMode, and config: ALAppearance? = nil) {
but still, it's not coming with fullscreen also I changed in xib
PresentationStyle = .fullScreen
Hello! You need in AppLocker file find 247 row and insert this: locker.modalPresentationStyle = .fullScreen root.present(locker, animated: true, completion: nil)
For me is working :)
if #available(iOS 13.0, *) { locker.isModalInPresentation = true } else { // Fallback on earlier versions } locker.modalPresentationStyle = .fullScreen
i need to present applocker fullscreen i add some codes on
class func present(with mode: ALMode, and config: ALAppearance? = nil) {
but still, it's not coming with fullscreen also I changed in xibPresentationStyle = .fullScreen
Hello! You need in AppLocker file find 247 row and insert this: locker.modalPresentationStyle = .fullScreen root.present(locker, animated: true, completion: nil)
For me is working :)
that presentFullScreen resolved it's not coming on the simulator on real device it's working fine.
I saw you used Square Valet but I didn't see you implement on code, you store Passcode on the userdefaults only
if #available(iOS 13.0, *) { locker.isModalInPresentation = true } else { // Fallback on earlier versions } locker.modalPresentationStyle = .fullScreen
i need to present applocker fullscreen i add some codes on
class func present(with mode: ALMode, and config: ALAppearance? = nil) {
but still, it's not coming with fullscreen also I changed in xibPresentationStyle = .fullScreen
Hello! You need in AppLocker file find 247 row and insert this: locker.modalPresentationStyle = .fullScreen root.present(locker, animated: true, completion: nil) For me is working :)
that presentFullScreen resolved it's not coming on the simulator on real device it's working fine.
I saw you used Square Valet but I didn't see you implement on code, you store Passcode on the userdefaults only
ок) I use old version, yes.
is it any possibility to get the passcode, bcz you used privately to set and get the passcode. my scenario if the user not saved passcode I need to set up as an create mode, else I need to set validate mode.
i need to present applocker fullscreen i add some codes on
class func present(with mode: ALMode, and config: ALAppearance? = nil) {
but still, it's not coming with fullscreen also I changed in xibPresentationStyle = .fullScreen