|
19 | 19 | @property (nonatomic, strong) NSMutableDictionary* mDicFormContentTableData;
|
20 | 20 | @property (nonatomic, assign, getter=isSetTableViewCellsClearColor) BOOL setTableViewCellsClearColor;
|
21 | 21 |
|
22 |
| -- (id) initWithContentIdentifiersArray:(NSMutableArray *)contentIdentifiers |
23 |
| - andContentDictionary:(NSMutableDictionary *)contentDictionary |
24 |
| - andTableView:(UITableView *)formTableView; |
| 22 | +- (id)initWithContentIdentifiersArray:(NSMutableArray *)contentIdentifiers |
| 23 | + andContentDictionary:(NSMutableDictionary *)contentDictionary |
| 24 | + andTableView:(UITableView *)formTableView; |
25 | 25 |
|
26 |
| -- (id) initWithContentIdentifiersArray:(NSMutableArray *)contentIdentifiers |
27 |
| - andContentDictionary:(NSMutableDictionary *)contentDictionary |
28 |
| - initialFormContentAs:(FormPortionTableViewCellData *)object |
29 |
| - forKey:(NSString *)forKey; |
| 26 | +- (id)initWithContentIdentifiersArray:(NSMutableArray *)contentIdentifiers |
| 27 | + andContentDictionary:(NSMutableDictionary *)contentDictionary |
| 28 | + initialFormContentAs:(FormPortionTableViewCellData *)object |
| 29 | + forKey:(NSString *)forKey; |
30 | 30 |
|
31 |
| -- (BOOL) initiateFormContentWithObject:(FormPortionTableViewCellData *)object forKey:(NSString *) forKey; |
| 31 | +- (BOOL)initiateFormContentWithObject:(FormPortionTableViewCellData *)object forKey:(NSString *)forKey; |
32 | 32 |
|
33 |
| -- (BOOL) insertAfterKey:(NSString *) key object:(FormPortionTableViewCellData *) object forKey:(NSString *) forKey; |
| 33 | +- (BOOL)insertAfterKey:(NSString *)key object:(FormPortionTableViewCellData *)object forKey:(NSString *)forKey; |
34 | 34 |
|
35 |
| -- (BOOL) removeObjectForKey:(NSString *) forKey; |
| 35 | +- (BOOL)removeObjectForKey:(NSString *)forKey; |
36 | 36 |
|
37 |
| -- (BOOL) resetDataSourceForKey:(NSString *) forKey; |
| 37 | +- (BOOL)resetDataSourceForKey:(NSString *)forKey; |
38 | 38 |
|
39 |
| -- (NSIndexPath *) getIndexPathForKey: (NSString *) key; |
| 39 | +- (NSIndexPath *)getIndexPathForKey:(NSString *)key; |
40 | 40 |
|
41 |
| -- (FormPortionTableViewCellData *) getFormPortionCellDataForKey: (NSString *) forKey; |
| 41 | +- (FormPortionTableViewCellData *)getFormPortionCellDataForKey:(NSString *)forKey; |
42 | 42 |
|
43 |
| -- (FormPortionTableViewCellData *) getFormPortionCellDataAtIndex:(NSUInteger)itemIndex; |
| 43 | +- (FormPortionTableViewCellData *)getFormPortionCellDataAtIndex:(NSUInteger)itemIndex; |
44 | 44 |
|
45 |
| -- (UITableViewCell *) generateFormCellForRowAtIndexPath:(NSIndexPath *) indexPath forFormContainer:(UITableView *)tableView; |
| 45 | +- (UITableViewCell *)generateFormCellForRowAtIndexPath:(NSIndexPath *)indexPath forFormContainer:(UITableView *)tableView; |
46 | 46 |
|
47 |
| -- (void) setActionForUIControl:(UIControl *)control withData:(FormPortionTableViewCellData *)data forAction:(NSString *)action; |
| 47 | +- (void)setActionForUIControl:(UIControl *)control withData:(FormPortionTableViewCellData *)data forAction:(NSString *)action; |
48 | 48 |
|
49 |
| -- (void) setActionsForTableViewCell:(UITableViewCell *)cell withMainUIControlDelegate:(id)mainUIControlDelegate forPrimaryActionsArr:(NSArray *)arrActions; |
| 49 | +- (void)setActionsForTableViewCell:(UITableViewCell *)cell |
| 50 | + withMainUIControlDelegate:(id)mainUIControlDelegate |
| 51 | + forPrimaryActionsArr:(NSArray *)arrActions; |
50 | 52 |
|
51 |
| -- (void) setActionForUIControl:(UIControl *)control withData:(FormPortionTableViewCellData *)data; |
| 53 | +- (void)setActionForUIControl:(UIControl *)control withData:(FormPortionTableViewCellData *)data; |
52 | 54 |
|
53 |
| -- (void) setActionForUIControl:(UIControl *)control forControlEvents:(UIControlEvents)controlEvents withData:(FormPortionTableViewCellData *)data; |
| 55 | +- (void)setActionForUIControl:(UIControl *)control |
| 56 | + forControlEvents:(UIControlEvents)controlEvents |
| 57 | + withData:(FormPortionTableViewCellData *)data; |
54 | 58 |
|
55 |
| -- (UITableViewCell *) getFormCellForKey:(NSString *)forKey forKindOfClass:(Class)aClass; |
| 59 | +- (UITableViewCell *)getFormCellForKey:(NSString *)forKey forKindOfClass:(Class)aClass; |
56 | 60 |
|
57 |
| -- (void) keepInUserDefaults:(FormPortionTableViewCellData *)cellData forKey:(NSString *) forKey; |
| 61 | +- (void)keepInUserDefaults:(FormPortionTableViewCellData *)cellData forKey:(NSString *)forKey; |
58 | 62 |
|
59 |
| -- (FormPortionTableViewCellData *) getCellDataFromUserDefaultsForKey:(NSString *)forKey; |
| 63 | +- (FormPortionTableViewCellData *)getCellDataFromUserDefaultsForKey:(NSString *)forKey; |
60 | 64 |
|
61 |
| -- (NSString *) getDataStringFromTextFieldForCellKey:(NSString *)forKey; |
| 65 | +- (NSString *)getDataStringFromTextFieldForCellKey:(NSString *)forKey; |
62 | 66 |
|
63 |
| -- (NSString *) getDataStringFromTextViewForCellKey:(NSString *)forKey; |
| 67 | +- (NSString *)getDataStringFromTextViewForCellKey:(NSString *)forKey; |
64 | 68 |
|
65 |
| -- (BOOL) getBooleanFromSwitchForCellKey:(NSString *)forKey; |
| 69 | +- (BOOL)getBooleanFromSwitchForCellKey:(NSString *)forKey; |
66 | 70 | @end
|
0 commit comments