Customise SafariViewController with APPAUTH swift

478 Views Asked by At

I am learning ios development with swift and i am implementing Authentication using the appauth pod. My question would be : Is it possible to customise the safariviewcontroller used to login? Are there some samples with swift?

Thanks

1

There are 1 best solutions below

1
On BEST ANSWER

SFSafariViewController is not customisable as Apple states -

If your app lets users view websites from anywhere on the Internet, use the SFSafariViewController class. If your app customizes, interacts with, or controls the display of web content, use the WKWebView class.

Source - https://developer.apple.com/documentation/safariservices/sfsafariviewcontroller

You may also try ASWebAuthenticationSession or SFAuthenticationSession.