Posts

Post not yet marked as solved
9 Replies
18k Views
if let url = URL(string:UIApplication.openSettingsURLString) { if UIApplication.shared.canOpenURL(url) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } }As from apple doc i use above method to open iphone setting from app but unfortuantely its going to app setting rather than IphoneSetting I am using swift version 4.2 not sure whats the issue
Posted
by Peter2131.
Last updated
.
Post not yet marked as solved
3 Replies
3k Views
I trying to find device last reboot time and it should not affect if user go and change time and date from settings. I tried using sytem up and kernel boot time i am geting time when device was last rebooted but if go into setting n change +2/-2 hours with date boot time changes. Appreciate any suggestions. Thank you
Posted
by Peter2131.
Last updated
.
Post not yet marked as solved
1 Replies
1.7k Views
how to identify if there is any change on touchid/faceidScenario 1: if device is stolen somone else try to use device Sceneraio 2: if user changes biometric by themselvesHow can we idenfity difference between such scenarios?
Posted
by Peter2131.
Last updated
.
Post not yet marked as solved
2 Replies
5.3k Views
Not sure whats the issue i am trying to open general setting from app so i use following code. But i notice the following code was working fine in sample application but not into my project where i want to implement if let url = URL(string:UIApplication.openSettingsURLString) {if UIApplication.shared.canOpenURL(url) {UIApplication.shared.open(url, options: [:], completionHandler: nil)}}any suggestions
Posted
by Peter2131.
Last updated
.