- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码片段:
struct player : UIViewControllerRepresentable {
var url : String
var player1: AVPlayer
func makeUIViewController(context: UIViewControllerRepresentableContext<player>) -> AVPlayerViewController {
let controller = AVPlayerViewController()
player1 = AVPlayer(url: URL(string: url)!)
controller.player = player1
return controller
}
func updateUIViewController(_ uiViewController: AVPlayerViewController, context: UIViewControllerRepresentableContext<player>) {
}
func pause() {
player1.pause()
}
}
这给出了错误:
'Cannot assign to property: 'self' is immutable'
我需要在 makeUIViewController 函数之外使用 AVPlayer,因为我需要从暂停函数访问它。我怎样才能做到这一点?
最佳答案
出现您所看到的错误是因为结构是值类型,并且其中任何更改其属性的方法都需要标记为mutating
。不幸的是,您无法标记 makeUIViewController
,因为它是在 UIViewControllerRepresentable
协议(protocol)中定义的,但有一个相当简单的解决方案。
您实际上只使用 url 来构造 AVPlayer
- 无需保留它。为您的结构编写初始化程序,该结构采用 url 字符串并构造一个 AVPlayer
。我已将 AVPlayer
设为可选,因为 URL(string: String)
返回一个 Optional URL
(正如您可以想象的那样,并非所有字符串都是有效的 url) 。下面的代码按预期工作:
struct Player: UIViewControllerRepresentable {
var player1: AVPlayer?
public init(url string: String) {
guard let url = URL(string: string) else {
self.player1 = nil
return
}
self.player1 = AVPlayer(url: url)
}
func makeUIViewController(context: UIViewControllerRepresentableContext<Player>) -> AVPlayerViewController {
let controller = AVPlayerViewController()
controller.player = player1
return controller
}
func updateUIViewController(_ uiViewController: AVPlayerViewController,
context: UIViewControllerRepresentableContext<Player>) {}
func pause() {
player1?.pause()
}
}
旁注:Swift 中的所有类型名称(类、结构体、枚举)按照惯例都是大写的:您的结构体应该称为 Player
而不是 player
。您还应该研究 Cordinator
的 UIViewControllerRepresentable
- 您需要一些东西来充当您的 AVPlayerViewControllerDelegate
。
关于swift - 无法分配给属性 : 'self' is immutable in UIViewControllerRepresentable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59037024/
好像你用 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
我是一名优秀的程序员,十分优秀!