Good morning all, I have my application checking for a connected device via BLE, if device is not connected i am using this code to segue to the settings App to establish the connection.
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
[[UIApplication sharedApplication] openURL:url];
However upon returning to the Class using the provided back to app button on top of UI, The viewDidLoad method is not triggered again !! , the question is how may I perform the same check and now take a different action. i.e. segue to next scene ?
Regards JZ