UMG function error report

FScriptDelegate scriptFunc;

scriptFunc.BindUFunction(this, *funcName);
//pButton->OnClicked.Add(scriptFunc);

// temp code by knight on 2022-7-16 解决移动版本按钮不能点击问题
pButton->OnPressed.Add(scriptFunc);

The UMG button clicked message event, which does not respond on Android and is currently replaced by press. Please take care of this.