SCMultilistField Class Reference
| Inherits from | SCChecklistField : SCField : NSObject |
| Declared in | SCMultilistField.h |
Overview
The SCMultilistField object identifies a Sitecore system item’s multilist field.
The field with [SCField type] is equal to “Multilist” has the SCMultilistField type.
It provides a getter for the items in multilist and an asynchronous loader for reading items of multilist.
Tasks
-
– readFieldValueOperationUsed for loading the array of items in multilist.
-
fieldValueThe value of the field. [SCMultilistField fieldValue] is NSArray object. It is nil by default, so use [SCChecklistField readFieldValueOperation] to load NSArray of items. SCMultilistField object does not own loaded items to avoid retain cycles.
property
Properties
fieldValue
The value of the field. [SCMultilistField fieldValue] is NSArray object. It is nil by default, so use [SCChecklistField readFieldValueOperation] to load NSArray of items. SCMultilistField object does not own loaded items to avoid retain cycles.
@property (nonatomic, readonly) id fieldValueDiscussion
The value of the field. [SCMultilistField fieldValue] is NSArray object. It is nil by default, so use [SCChecklistField readFieldValueOperation] to load NSArray of items. SCMultilistField object does not own loaded items to avoid retain cycles.
Declared In
SCMultilistField.hInstance Methods
readFieldValueOperation
Used for loading the array of items in multilist.
- (SCAsyncOp)readFieldValueOperationReturn Value
SCAsyncOp block. Call it to get the expected result. The SCAsyncOpResult handler’s result is NSArray of SCItems objects or nil if error happens.
Discussion
Used for loading the array of items in multilist.
Declared In
SCMultilistField.h