Xojo.Introspection.PropertyInfo.Value always returning nil?

Not sure if this is a bug or if I’m overlooking something, but this is always returning nil for me on every class (and crashing the iOS Simulator if I try to use v). The property names are coming up fine, though.

[code] Dim ti As xojo.Introspection.TypeInfo = xojo.Introspection.GetType(me)
dim p() as xojo.Introspection.PropertyInfo
p=ti.Properties

for each pi as xojo.Introspection.PropertyInfo in p
dim pt as xojo.Introspection.TypeInfo
pt=pi.PropertyType

dim nm as text=pi.name
system.DebugLog(nm)

dim v as Auto=pi.Value(me)
//v is always nil

next[/code]

I can reproduce this in iOS. On the desktop, it works just fine.

Could there be any sort of workaround for this still using introspection? I submitted a feedback bug report: <https://xojo.com/issue/40034>

But this is basically meaning introspection can’t work to retrieve variable values on iOS.