VOTitlePersonalizationOptionBuilder
@interface VOTitlePersonalizationOptionBuilder : VOPersonalizationOptionBuilder
VOTitlePersonalizationOptionBuilder
is used only to help construct the VOTitlePersonalizationOption
and should not be initialized directly.
Instances of these properties should be instantiated and set in the VOTitlePersonalizationOption
titlePersonalizationOptionWithBuilder:
method.
-
Initial title text to be displayed in
CreateAddTitleViewController
.Note
Default text color is black. *Declaration
Objective-C
@property (assign, readwrite, nonatomic) NSString *titleText;
Swift
var titleText: String! { get set }
-
The maximum number of characters that titleText can contain.
Declaration
Objective-C
@property (assign, readwrite, nonatomic) NSInteger maxTitleLength;
Swift
var maxTitleLength: Int { get set }
-
(Unselectable) text to be displayed when there is no title text.
Note
Default text color is gray. *Declaration
Objective-C
@property (assign, readwrite, nonatomic) NSString *placeholderText;
Swift
var placeholderText: String! { get set }