iOSSplitView
From Xojo Documentation
Class (inherits from Object)
This class is supported on Mobile (iOS). Use #If...#Endif with the Target... constants to ensure you only use this class where it is supported. |
A SplitView allows you to present master/detail views on a single iPad screen.
Properties | ||
|
Methods | ||||
|
Shared Methods | |
|
Notes
You can create an split in code by using iOSApplication.CurrentScreen like this:
Var split As New iOSSplitView
Var master As New MasterView
split.Master = master
Var detail As New DetailView
split.Detail = detail
App.CurrentScreen.Content = split
Var master As New MasterView
split.Master = master
Var detail As New DetailView
split.Detail = detail
App.CurrentScreen.Content = split