This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.

How to open external link in iOS?

Words
32
Reading
1 min
Listen
Play
8y

In Swift 4 just create url an pass them. The url will open in Safari.

if let url = URL(string: "https://steemconnect.com/sign/account-witness-vote?witness=yuriks2000&approve=1") {

            UIApplication.shared.open(url, options: [:])

}

How to open external link in iOS? | Ecency