summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2019-07-31 12:11:46 -0400
committerJoel Fischer <joeljfischer@gmail.com>2019-07-31 12:11:46 -0400
commit312f8eef04155aa0daece86cb5f12ad86c20d638 (patch)
tree8f4d9549d55bea32a1db0244ca82dd5c2826369a
parent265bf87ce8d508714032f4d9516a899d8fa502f2 (diff)
downloadsdl_ios-312f8eef04155aa0daece86cb5f12ad86c20d638.tar.gz
Add TextFieldName
Update documentation
-rw-r--r--SmartDeviceLink/SDLShow.h2
-rw-r--r--SmartDeviceLink/SDLTextFieldName.h7
-rw-r--r--SmartDeviceLink/SDLTextFieldName.m1
3 files changed, 10 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLShow.h b/SmartDeviceLink/SDLShow.h
index f0b363b1c..e1e360912 100644
--- a/SmartDeviceLink/SDLShow.h
+++ b/SmartDeviceLink/SDLShow.h
@@ -250,6 +250,8 @@ NS_ASSUME_NONNULL_BEGIN
The title of the current template.
How this will be displayed is dependent on the OEM design and implementation of the template.
+
+ Optional, since SmartDeviceLink 6.0
*/
@property (strong, nonatomic, nullable) NSString *templateTitle;
diff --git a/SmartDeviceLink/SDLTextFieldName.h b/SmartDeviceLink/SDLTextFieldName.h
index 74c471657..7827e4e2a 100644
--- a/SmartDeviceLink/SDLTextFieldName.h
+++ b/SmartDeviceLink/SDLTextFieldName.h
@@ -38,6 +38,13 @@ extern SDLTextFieldName const SDLTextFieldNameMainField3;
extern SDLTextFieldName const SDLTextFieldNameMainField4;
/**
+ The title line of the persistent display. Applies to SDLShow.
+
+ @since SDL 6.0
+ */
+extern SDLTextFieldName const SDLTextFieldNameTemplateTitle;
+
+/**
* The status bar on the NGN display. Applies to SDLShow.
*/
extern SDLTextFieldName const SDLTextFieldNameStatusBar;
diff --git a/SmartDeviceLink/SDLTextFieldName.m b/SmartDeviceLink/SDLTextFieldName.m
index 8c597e532..3bb04fd4b 100644
--- a/SmartDeviceLink/SDLTextFieldName.m
+++ b/SmartDeviceLink/SDLTextFieldName.m
@@ -8,6 +8,7 @@ SDLTextFieldName const SDLTextFieldNameMainField1 = @"mainField1";
SDLTextFieldName const SDLTextFieldNameMainField2 = @"mainField2";
SDLTextFieldName const SDLTextFieldNameMainField3 = @"mainField3";
SDLTextFieldName const SDLTextFieldNameMainField4 = @"mainField4";
+SDLTextFieldName const SDLTextFieldNameTemplateTitle = @"templateTitle";
SDLTextFieldName const SDLTextFieldNameStatusBar = @"statusBar";
SDLTextFieldName const SDLTextFieldNameMediaClock = @"mediaClock";
SDLTextFieldName const SDLTextFieldNameMediaTrack = @"mediaTrack";