Bold360 and BoldChat Developer Center

BCForm.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 @class BCFormField;
7 
12 @interface BCForm : NSObject
13 
18 @property(nonatomic, copy, readonly)NSArray *formFields;
19 
26 + (id)formWithFormFields:(NSArray *)formFields;
27 
34 - (id)initWithFormFields:(NSArray *)formFields;
35 
42 - (BCFormField *)formFieldByKey:(NSString *)key;
43 
44 
45 @end
NSArray * formFields
An array of BCFormField objects that represent rows of the form.
Definition: BCForm.h:18
Container class for holding the information related to showing a form such as the pre chat...
Definition: BCForm.h:12
Container class for information about an individual form field. This class also contains the value to...
Definition: BCFormField.h:27