Post

Replies

Boosts

Views

Activity

Reply to VPN Client Not Working With MacOS 13
Now it is working on my device (the device on which I developed it) but does not work on any other device. I have added the Provisioning UDID of the devices on which I want to test it to my developer account, the application launches on those devices but connection functionality does not work. Is there something else related to Network Extension that should be taken care of?
Jan ’23
Reply to Dismissing AlertController When Pushed To Next ViewController
So, basically what I'm doing is, simply pushing to second view controller like below: @IBAction func showAlertButtonTapped(_ sender: UIButton) {      _ = AlertUtil.sharedInstance.showAlertView(message: "This is an alert message.", actionTitles: ["OK"], actions: nil)             let storyboard = UIStoryboard(name: "Main", bundle: nil)      let viewController = storyboard.instantiateViewController(withIdentifier: "SecondViewController") as! SecondViewController       navigationController?.pushViewController(viewController, animated: true)    } What I want is to write a common code in my showAlertView function, so that, whenever I navigate to another view controller the alert should be dismissed.
Dec ’22
Reply to Two Factor Authentication with Network Extension
Hi Eskimo, Thanks for your quick response. But I'm trying to hold the tunnel after starting it. Basically what happens is I start the tunnel, it tries to authenticate the server but a challenge is returned from server asking for OTP, this is the point at which I want the tunnel/session to wait for re-authentication. FYI, I'm working with Packet Tunnel and my target platform is iOS. Regards, Ganaraj Savant
Aug ’22