Who i do this (i am new to iOS)
View.show = iOS ?
i have like 5 view in me new iOS app
Thanks i found the way
If you’re planning on both iPhone and split screen iPad apps, then something like this:
If Self.ParentSplitView <> Nil Then 'iPad
Dim newgun As New GunMakerView
Self.ParentSplitView.Detail = newgun
Else 'Phone
Dim newgun As New GunMakerView
Self.PushTo(newgun)
End If
All iOS is new for me
thanks