FWebBrowserWindow::UnbindUObject on iOS is not implemented yet.
IOSPlatformWebBrowser
void FWebBrowserWindow::BindUObject(const FString& Name, UObject* Object, bool bIsPermanent /*= true*/) { } void FWebBrowserWindow::UnbindUObject(const FString& Name, UObject* Object /*= nullptr*/, bool bIsPermanent /*= true*/) { }
The same function on Android is implemented.
AndroidWebBrowserWindow.cpp
void FAndroidWebBrowserWindow::BindUObject(const FString& Name, UObject* Object, bool bIsPermanent /*= true*/) { Scripting->BindUObject(Name, Object, bIsPermanent); } void FAndroidWebBrowserWindow::UnbindUObject(const FString& Name, UObject* Object /*= nullptr*/, bool bIsPermanent /*= true*/) { Scripting->UnbindUObject(Name, Object, bIsPermanent); }
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-59488 in the post.
0 |
Component | UE - Platform - Mobile |
---|---|
Affects Versions | 4.19.2, 4.20 |
Target Fix | 4.21 |
Created | May 23, 2018 |
---|---|
Resolved | Sep 5, 2018 |
Updated | Aug 21, 2021 |