Class: FunctionCallStringField
A Function Call field with a string value.
@interface FunctionCallStringField : FunctionCallField
Properties
fieldValue
The value for the field.
@property (nonatomic, strong, nullable) NSString* fieldValue;
Method: fieldWithName:
Creates and initializes an instance of a Function Call string field.
Declaration
+(nullable instancetype)fieldWithName:(nonnull NSString*)fieldName;
Parameters
Parameter | Value |
---|---|
fieldName | The name of the field |
Returns
Returns the initialized field instance.
Exceptions
None
Method: fieldWithName:andValue:
Creates and initializes an instance of a Function Call string field.
Declaration
+(nullable instancetype)fieldWithName:(nonnull NSString*)fieldName andValue:(nullable NSString*)fieldValue;
Parameters
Parameter | Value |
---|---|
fieldName | The name of the field. |
fieldValue | The string value for the field |
Returns
Returns the initialized field instance.
Exceptions
None
Method: initWithFieldName:
Initializes the Function Call string field, or initializes the Function Call struct field.
Declaration
-(nullable instancetype)initWithFieldName:(nonnull NSString*)fieldName;
Parameters
Parameter | Value |
---|---|
fieldName | The name of the field. |
Returns
Returns the initialized field instance.
Exceptions
None
Method: initWithFieldName:andValue:
Initialize the Function Call string field with a value.
Declaration
-(nullable instancetype)initWithFieldName:(nonnull NSString*)fieldName andValue:(nullable NSString*)fieldValue;
Parameters
Parameter | Value |
---|---|
fieldName | The name of the field. |
fieldValue | The string value for the field |
Returns
Returns the initialized field instance.
Exceptions
None
Loading...
There was a problem loading this topic