var exampleProperty = serializedObject.FindAirshipProperty("exampleProperty");
AirshipEditorGUI.PropertyField(exampleProperty);selectedTabIndex = AirshipEditorGUI.BeginTabs(selectedTabIndex, new [] {
new GUIContent("Tab 1"),
new GUIContent("Tab 2"),
});
if (selectedTabIndex == 0) {
// render content of tab #1
} else if (selectedTabIndex == 1) {
// render content of tab #2
}
AirshipEditorGUI.EndTabs();