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]