AppLocker icon indicating copy to clipboard operation
AppLocker copied to clipboard

present full screen iOS 13

Open syedrazackimran opened this issue 4 years ago • 4 comments

 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

syedrazackimran avatar Oct 23 '19 14:10 syedrazackimran

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

Savchukv avatar Oct 24 '19 07:10 Savchukv

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

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

syedrazackimran avatar Oct 25 '19 03:10 syedrazackimran

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

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.

Savchukv avatar Oct 28 '19 04:10 Savchukv

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.

syedrazackimran avatar Oct 30 '19 01:10 syedrazackimran