How do you call a method on a UIView from outside the UIViewRepresentable in SwiftUI?(如何在SwiftUI中从UIView可表示的外部调用UIView上的方法?)
本文介绍了如何在SwiftUI中从UIView可表示的外部调用UIView上的方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望能够将对UIViewRespresentable
(或者可能是Coordinator
)上的方法的引用传递给父View
。我想要做到这一点的唯一方法是在父View
结构上创建一个带有类的字段,然后将其传递给子结构,子结构充当此行为的委托。但它似乎相当冗长。
这里的用例是能够从标准SwiftUIButton
调用方法,该方法将缩放MKMapView
中的当前位置,该位置隐藏在树中的UIViewRepresentable
中。我不希望当前位置是Binding
,因为我希望此操作是一次性的,并且不会经常反映在用户界面中。
tl;dr是否有让父级在SwiftUI中获得对子级的引用的标准方法,至少对于UIViewRepresentable
s?(我知道这在大多数情况下可能并不可取,主要与SwiftUI模式背道而驰)。
推荐答案
我自己也很努力,以下是使用Combine
和PassthroughSubject
的方法:
struct OuterView: View {
private var didChange = PassthroughSubject<String, Never>()
var body: some View {
VStack {
// send the PassthroughSubject over
Wrapper(didChange: didChange)
Button(action: {
self.didChange.send("customString")
})
}
}
}
// This is representable struct that acts as the bridge between UIKit <> SwiftUI
struct Wrapper: UIViewRepresentable {
var didChange: PassthroughSubject<String, Never>
@State var cancellable: AnyCancellable? = nil
func makeUIView(context: Context) → SomeView {
let someView = SomeView()
// ... perform some initializations here
// doing it in `main` thread is required to avoid the state being modified during
// a view update
DispatchQueue.main.async {
// very important to capture it as a variable, otherwise it'll be short lived.
self.cancellable = didChange.sink { (value) in
print("Received: (value)")
// here you can do a switch case to know which method to call
// on your UIKit class, example:
if (value == "customString") {
// call your function!
someView.customFunction()
}
}
}
return someView
}
}
// This is your usual UIKit View
class SomeView: UIView {
func customFunction() {
// ...
}
}
这篇关于如何在SwiftUI中从UIView可表示的外部调用UIView上的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在SwiftUI中从UIView可表示的外部调用UIView上的方法?
基础教程推荐
猜你喜欢
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01