VivochaDataCollection
@interface VivochaDataCollection : NSObject
Represent the data collection
-
@property (nonatomic, retain) NSMutableArray *forms;The collection of
VivochaDataCollectionFormobjects inside the data collection -
+ (VivochaDataCollection *)dataCollectionWithForms:(NSArray *)formsArray;Factory method that returns a VivochaDataCollection object.
Parameters
formsArraythe forms that will be included in the data collection.
Return Value
the data collection.
-
- (void)addForm:(VivochaDataCollectionForm *)aForm;Adds a form in a data collection
Parameters
aFormthe form that will be added to the data collection.