Inherits from NSObject
Declared in DTScriptVariable.h

Overview

Class to represent a variable or parameter in a Objective-C scripting expression

Properties

name

The name of the receiver

@property (nonatomic, copy) NSString *name

Declared In

DTScriptVariable.h

value

The current value of the receiver

@property (nonatomic, strong) id value

Declared In

DTScriptVariable.h

Class Methods

scriptVariableWithName:value:

Creates a new script variable with a given name and value

+ (id)scriptVariableWithName:(NSString *)name value:(id)value

Parameters

name

The name for the variable

value

The value for the variable

Declared In

DTScriptVariable.h