iOSTabBar.AddTab

From Xojo Documentation

Method

iOSTabBar.AddTab(content As iOSTabContent)

Supported on Mobile(iOS).

Adds an iOSView to the tab bar.

Sample Code

This code (on a View) add View3 to the TabBar:

If Self.ParentTabBar <> Nil Then
Var v As New View3
Self.ParentTabBar.AddTab(v)
End If