- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,我知道可以使用 SwiftUI 列表等选项来获得类似的效果。但是我需要 UICollectionView 的自动滚动功能,所以我真的很想实现一个“老派”版本。我什至不想要理想的组合布局版本。
我当前的代码如下所示:
import SwiftUI
struct CollectionView: UIViewControllerRepresentable {
private var isActive: Binding<Bool>
private let viewController = UIViewController()
private let collectionController: UICollectionView
init(_ isActive: Binding<Bool>) {
self.isActive = isActive
self.collectionController = UICollectionView(frame: CGRect(x: 0, y: 0, width: 100, height: 200), collectionViewLayout: UICollectionViewFlowLayout())
}
func makeUIViewController(context: UIViewControllerRepresentableContext<CollectionView>) -> UIViewController {
return viewController
}
func updateUIViewController(_ uiViewController: UIViewController, context: UIViewControllerRepresentableContext<CollectionView>) {
if self.isActive.wrappedValue && collectionController.delegate == nil { // to not show twice
collectionController.delegate = context.coordinator
collectionController.dataSource = context.coordinator
}
}
func makeCoordinator() -> Coordintor {
return Coordintor(owner: self)
}
final class Coordintor: NSObject, UICollectionViewDelegate, UICollectionViewDataSource {
weak var viewController:UIViewController?
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 3
}
var cellId = "Cell"
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath)
return cell
}
// works as delegate
let owner: CollectionView
init(owner: CollectionView) {
self.owner = owner
}
}
}
最佳答案
这是最小的可运行演示。 (注意:如果全部以编程方式完成,则必须注册单元格)
class MyCell: UICollectionViewCell {
}
struct CollectionView: UIViewRepresentable {
func makeUIView(context: Context) -> UICollectionView {
let view = UICollectionView(frame: .zero, collectionViewLayout: UICollectionViewFlowLayout())
view.backgroundColor = UIColor.clear
view.dataSource = context.coordinator
view.register(MyCell.self, forCellWithReuseIdentifier: "myCell")
return view
}
func updateUIView(_ uiView: UICollectionView, context: Context) {
}
func makeCoordinator() -> Coordinator {
Coordinator()
}
class Coordinator: NSObject, UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
3
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "myCell", for: indexPath) as! MyCell
cell.backgroundColor = UIColor.red
return cell
}
}
}
struct TestUICollectionView_Previews: PreviewProvider {
static var previews: some View {
CollectionView()
}
}
关于swift - 如何使用 UIViewControllerRepresentable 在 SwiftUI 中呈现 UICollectionView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61424672/
好像你用 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
我是一名优秀的程序员,十分优秀!