I’d like to get the iOSView from another view. In this case I have an iOSScreen with a tab view. Tab 0 gets some information and I want to populate some controls on the view in Tab 1.
Seems like this should be possible but I’m not finding it in the documentation. Any ideas?
If isIPad and self.ParentSplitView <> nil and self.ParentSplitView.Detail isa vDashboard then
vDashboard(self.ParentSplitView.Detail) //Do something here
End If
Answer is to keep all views in properties somewhere so that you can refer back to them - in other words, for all but the simplest apps, IDE screens aren’t that useful.