使用 APPAUTH swift 自定义 SafariViewController
Customise SafariViewController with APPAUTH swift
我正在使用 swift 学习 ios 开发,并且我正在使用 appauth pod 实施身份验证。我的问题是:是否可以自定义用于登录的 safariviewcontroller?有没有带 swift 的样本?
谢谢
SFSafariViewController
不可自定义,如 Apple 所述 -
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.
来源 - https://developer.apple.com/documentation/safariservices/sfsafariviewcontroller
您也可以尝试 ASWebAuthenticationSession
或 SFAuthenticationSession
。
我正在使用 swift 学习 ios 开发,并且我正在使用 appauth pod 实施身份验证。我的问题是:是否可以自定义用于登录的 safariviewcontroller?有没有带 swift 的样本?
谢谢
SFSafariViewController
不可自定义,如 Apple 所述 -
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.
来源 - https://developer.apple.com/documentation/safariservices/sfsafariviewcontroller
您也可以尝试 ASWebAuthenticationSession
或 SFAuthenticationSession
。