MAUI IOS Release Error

When I use radzenimage it gives this error

I am seeing similar issues with Radzen Controls in .NET Maui Blazor apps.

Everything works as expected on Android in Debug and Release, and on iOS in Debug.
However iOS in Release, the app continues to crash with the usual "An unhandled error has occurred" at the bottom of the page.

I have tried a data-bound Checkbox, DropDown, and DropDownDataGrid.

However, I have gotten a DataGrid and ProgressBar to work fine.

How are you getting the specific error information in Release?
I've tried try/catches (in both code and markup) but the app crashes before I can get any good information out of the error.

Enabling the interpreter for Release builds has been working well for me so far.

<PropertyGroup Condition="$(TargetFramework.Contains('-ios'))">
    <UseInterpreter>true</UseInterpreter> 
</PropertyGroup>
1 Like