Description

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);
}

Have Comments or More Details?

There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-59488 in the post.

0
Login to Vote

Fixed
ComponentUE - Platform - Mobile
Affects Versions4.19.24.20
Target Fix4.21
Fix Commit4343824
Main Commit4356719
Release Commit4399518
CreatedMay 23, 2018
ResolvedSep 5, 2018
UpdatedAug 21, 2021