如何在SwiftUI中使用音量滑块。 Apple的教程在将UIKit合并到SwiftUI视图(https://developer.apple.com/tutorials/swiftui/creating-and-combining-views#create-a-custom-image-view)方面提供了帮助,但是在音量滑块上找不到任何东西。下面是我到目前为止从Storyboard滑块上获取并经过调整的代码,但是没有产生任何效果。
String aliasedName = getResources().getResourceEntryName(value.data);
答案 0 :(得分:0)
比我最终证明要容易得多:
import SwiftUI
import MediaPlayer
import UIKit
struct HomeView: UIViewRepresentable {
func makeUIView(context: Context) -> MPVolumeView {
MPVolumeView(frame: .zero)
}
func updateUIView(_ view: MPVolumeView, context: Context) {
}
}