- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
似乎无法创建与 CNContactPickerViewController 一起使用的 UIViewControllerRepresentable。
使用 Xcode 11 beta 4,我使用其他 UIViewController 创建了许多其他 UIViewControllerRepresentable,并且这些都工作得很好。我尝试更改 CNContactPickerViewController 的功能和委托(delegate)的不同实现。
import SwiftUI
import ContactsUI
// Minimal version
struct LookupContactVCR : UIViewControllerRepresentable {
func makeUIViewController(context: Context) -> CNContactPickerViewController {
let contactPickerVC = CNContactPickerViewController()
contactPickerVC.delegate = context.coordinator
return contactPickerVC
}
func makeCoordinator() -> Coordinator {
return Coordinator()
}
func updateUIViewController(_ uiViewController: CNContactPickerViewController, context: Context) {}
class Coordinator: NSObject {}
}
extension LookupContactVCR.Coordinator : CNContactPickerDelegate {
func contactPicker(_ picker: CNContactPickerViewController, didSelect contact: CNContact) {
print("Chose: \(contact.givenName)")
}
}
#if DEBUG
struct LookupContact_Previews : PreviewProvider {
static var previews: some View {
LookupContactVCR()
}
}
#endif
没有错误消息。但屏幕始终是白色的,没有任何渲染。
最佳答案
首先,请针对此问题提交一份[Bug Report][1]。[1]:https://bugreport.apple.com
其次,此问题有2 个解决方法:
ABPeoplePickerNavigationController
它已被弃用,但仍然有效。UIViewController
其中呈现 CNContactPickerViewController
上viewWillAppear
并将这个新创建的 View Controller 与SwiftUI
一起使用.import SwiftUI
import AddressBookUI
struct PeoplePicker: UIViewControllerRepresentable {
typealias UIViewControllerType = ABPeoplePickerNavigationController
final class Coordinator: NSObject, ABPeoplePickerNavigationControllerDelegate, UINavigationControllerDelegate {
func peoplePickerNavigationController(_ peoplePicker: ABPeoplePickerNavigationController, didSelectPerson person: ABRecord) {
<#selected#>
}
func peoplePickerNavigationControllerDidCancel(_ peoplePicker: ABPeoplePickerNavigationController) {
<#cancelled#>
}
}
func makeCoordinator() -> Coordinator {
return Coordinator()
}
func makeUIViewController(context: UIViewControllerRepresentableContext<PeoplePicker>) -> PeoplePicker.UIViewControllerType {
let result = UIViewControllerType()
result.delegate = context.coordinator
return result
}
func updateUIViewController(_ uiViewController: PeoplePicker.UIViewControllerType, context: UIViewControllerRepresentableContext<PeoplePicker>) { }
}
import Foundation
import ContactsUI
import Contacts
protocol EmbeddedContactPickerViewControllerDelegate: AnyObject {
func embeddedContactPickerViewControllerDidCancel(_ viewController: EmbeddedContactPickerViewController)
func embeddedContactPickerViewController(_ viewController: EmbeddedContactPickerViewController, didSelect contact: CNContact)
}
class EmbeddedContactPickerViewController: UIViewController, CNContactPickerDelegate {
weak var delegate: EmbeddedContactPickerViewControllerDelegate?
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
self.open(animated: animated)
}
private func open(animated: Bool) {
let viewController = CNContactPickerViewController()
viewController.delegate = self
self.present(viewController, animated: false)
}
func contactPickerDidCancel(_ picker: CNContactPickerViewController) {
self.dismiss(animated: false) {
self.delegate?.embeddedContactPickerViewControllerDidCancel(self)
}
}
func contactPicker(_ picker: CNContactPickerViewController, didSelect contact: CNContact) {
self.dismiss(animated: false) {
self.delegate?.embeddedContactPickerViewController(self, didSelect: contact)
}
}
}
import SwiftUI
import Contacts
import Combine
struct EmbeddedContactPicker: UIViewControllerRepresentable {
typealias UIViewControllerType = EmbeddedContactPickerViewController
final class Coordinator: NSObject, EmbeddedContactPickerViewControllerDelegate {
func embeddedContactPickerViewController(_ viewController: EmbeddedContactPickerViewController, didSelect contact: CNContact) {
<#selected#>
}
func embeddedContactPickerViewControllerDidCancel(_ viewController: EmbeddedContactPickerViewController) {
<#cancelled#>
}
}
func makeCoordinator() -> Coordinator {
return Coordinator()
}
func makeUIViewController(context: UIViewControllerRepresentableContext<EmbeddedContactPicker>) -> EmbeddedContactPicker.UIViewControllerType {
let result = EmbeddedContactPicker.UIViewControllerType()
result.delegate = context.coordinator
return result
}
func updateUIViewController(_ uiViewController: EmbeddedContactPicker.UIViewControllerType, context: UIViewControllerRepresentableContext<EmbeddedContactPicker>) { }
}
关于swiftui - UIViewControllerRepresentable 和 CNContactPickerViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57246685/
好像你用 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
我是一名优秀的程序员,十分优秀!