- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 xcode 以某种方式更新后我遇到了一个问题(猜测它是一个新的 xcode 版本)。当我尝试在新模拟器中运行该应用程序时,出现错误 Thread 1: Fatal error: UIViewControllerRepresentables must be value types: SignInWithAppleToFirebase
但当我在物理设备上运行时,一切仍按预期运行.当我四处寻找错误时,我发现 some explanations 有点有意义并适用于 SignInWithAppleToFirebase 类。 SignInWithAppleToFirebase 在下面,但我有点想解释为什么在我将这个类重新加工成一个结构之前我的物理设备上工作(如果这只是 xcode 的一些错误,我会遇到一些我不想处理的问题) ).
final class SignInWithAppleToFirebase: UIViewControllerRepresentable {
private var appleSignInDelegates: SignInWithAppleDelegates! = nil
private let onLoginEvent: ((SignInWithAppleToFirebaseResponse) -> ())?
private var currentNonce: String?
init(_ onLoginEvent: ((SignInWithAppleToFirebaseResponse) -> ())? = nil) {
self.onLoginEvent = onLoginEvent
}
func makeUIViewController(context: Context) -> UIViewController {
let vc = UIHostingController(rootView: SignInWithAppleButton().onTapGesture(perform: showAppleLogin))
return vc as UIViewController
}
func updateUIViewController(_ uiView: UIViewController, context: Context) {
}
private func showAppleLogin() {
let nonce = randomNonceString()
currentNonce = nonce
let appleIDProvider = ASAuthorizationAppleIDProvider()
let request = appleIDProvider.createRequest()
request.requestedScopes = [.fullName, .email]
request.nonce = sha256(nonce)
performSignIn(using: [request])
}
private func performSignIn(using requests: [ASAuthorizationRequest]) {
guard let currentNonce = self.currentNonce else {
return
}
appleSignInDelegates = SignInWithAppleDelegates(window: nil, currentNonce: currentNonce, onLoginEvent: self.onLoginEvent)
let authorizationController = ASAuthorizationController(authorizationRequests: requests)
authorizationController.delegate = appleSignInDelegates
authorizationController.presentationContextProvider = appleSignInDelegates
authorizationController.performRequests()
}
// Adapted from https://auth0.com/docs/api-auth/tutorials/nonce#generate-a-cryptographically-random-nonce
private func randomNonceString(length: Int = 32) -> String {
precondition(length > 0)
let charset: Array<Character> =
Array("0123456789ABCDEFGHIJKLMNOPQRSTUVXYZabcdefghijklmnopqrstuvwxyz-._")
var result = ""
var remainingLength = length
while remainingLength > 0 {
let randoms: [UInt8] = (0 ..< 16).map { _ in
var random: UInt8 = 0
let errorCode = SecRandomCopyBytes(kSecRandomDefault, 1, &random)
if errorCode != errSecSuccess {
fatalError("Unable to generate nonce. SecRandomCopyBytes failed with OSStatus \(errorCode)")
}
return random
}
randoms.forEach { random in
if length == 0 {
return
}
if random < charset.count {
result.append(charset[Int(random)])
remainingLength -= 1
}
}
}
return result
}
private func sha256(_ input: String) -> String {
let inputData = Data(input.utf8)
let hashedData = SHA256.hash(data: inputData)
let hashString = hashedData.compactMap {
return String(format: "%02x", $0)
}.joined()
return hashString
}
}
最佳答案
这实际上非常简单,只需将 appleSignInDelegates 和 currentNonce 切换为 @State 变量并将其从类切换为结构。
struct SignInWithAppleToFirebase: UIViewControllerRepresentable {
@State var appleSignInDelegates: SignInWithAppleDelegates! = nil
private let onLoginEvent: ((SignInWithAppleToFirebaseResponse) -> ())?
@State var currentNonce:String?
关于ios - 新的 Xcode UIViewControllerRepresentables 必须是模拟器的值类型而不是真实设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73739109/
好像你用 UIViewControllerRepresentable当您通过 sheet 在您的 SwiftUI 应用程序中实现 View Controller 时您无法滑动以关闭它。您是否需要做一些
我正在尝试使用 UIKit 制作 PDFView 并从以前的 SwiftUI View 中传递数据。数据本身是一个带有文件名的字符串。不知何故,字符串没有从 UIViewControllerRepre
似乎无法创建与 CNContactPickerViewController 一起使用的 UIViewControllerRepresentable。 使用 Xcode 11 beta 4,我使用其他
在 SwiftUI 中,我试图使用一个按钮来实现 UIViewControllerRepresentable 中的文本更改,但可能缺少有关绑定(bind)的关键概念。 在 SwiftUI 中: str
在 xcode 以某种方式更新后我遇到了一个问题(猜测它是一个新的 xcode 版本)。当我尝试在新模拟器中运行该应用程序时,出现错误 Thread 1: Fatal error: UIViewCon
在 SwiftUI 中,如果您使用 NavigationLink() 转换为 UIViewControllerRepresentable,您会如何;比如说,在导航栏上添加按钮或更改标题属性。 这就是我
我有一个 UIHostingController包含在 UIViewControllerRepresentable包含对绑定(bind)的引用。当绑定(bind)改变时,updateUIViewCon
更新:从 beta4 开始,问题仍然存在。 我创建了一个非常简单的示例,说明由 UIViewControllerRepresentable 表示的 UIViewController 如何从不释放。 i
我正在尝试更改 UIViewControllerRepresentable的@State并注意到 updateUIViewController(_ uiViewController:context:)
我有以下代码片段: struct player : UIViewControllerRepresentable { var url : String var player1:
所以我正在尝试创建一个自定义分页 scrollView。我已经能够创建该包装器,并且该包装器内的内容由一个自定义 View 组成。在那个自定义 View 中,我有两个 NavigationLink 按
我使用这种方法将相机与 swiftUI 相结合: https://medium.com/@gaspard.rosay/create-a-camera-app-with-swiftui-60876fcb
首先,我知道可以使用 SwiftUI 列表等选项来获得类似的效果。但是我需要 UICollectionView 的自动滚动功能,所以我真的很想实现一个“老派”版本。我什至不想要理想的组合布局版本。 我
我创建了一个符合 UIViewControllerRepresentable 的包装器。我创建了一个 UIViewController,其中包含一个启用了分页的 UIScrollView。 自定义包装
我正在开发一个混合使用 UIKit 和 SwiftUI 的项目。我目前有一个 ZStack,我在其中保存了我的 SwiftUI 内容,我需要在该内容之上显示一个 UIViewController。所以
我正在尽可能使用 SwiftUI 创建一个新的 iOS 应用程序。但是,我希望能够生成包含一些数据的 PDF。 在没有 swiftUI 的类似项目中,我可以做到这一点 let docControlle
我正在尝试在 Xcode 14 beta 和 iOS 16 中为我的 View Controller 创建 Xcode 预览。每当我运行代码时,它只会在对话框中抛出一些 Xcode 预览错误并使预览崩
不确定我是否遗漏了什么或发现了 SwiftUI 错误。这是一件如此简单的事情,它让我发疯。 尝试设置 UIViewControllerRepresentable 但出现以下错误: Protocol '
我有一个 UITableViewController我包裹在 UIViewControllerRepresentable 中的子类. 我已经设置了 navigationItem.title和 navi
使用 Xcode 11 GM Seed 编写一些 SwiftUI 代码,我遇到了一个我不明白的 Swift 错误。 struct MainViewController: View { var
我是一名优秀的程序员,十分优秀!