Bold360 and BoldChat Developer Center

BCCellLogic.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 #import <UIKit/UIKit.h>
8 
13 @interface BCCellLogic : NSObject
14 
19 @property(nonatomic, strong)IBOutlet UITableViewCell *cell;
20 
25 @property(nonatomic, strong)IBOutlet UIView *missingView;
26 
31 @property(nonatomic, assign)BOOL showMissingViewIsEmpty;
32 
37 @property(nonatomic, strong)BoldChatViewSettings *viewSettings;
38 
45 - (id)initWithViewSettings:(BoldChatViewSettings *)viewSettings;
46 
52 - (BOOL)isFilled;
53 
58 - (void)loadViewFromNib;
59 
60 
61 @end
BOOL showMissingViewIsEmpty
Show missing view if the cell not filled.
Definition: BCCellLogic.h:31
IBOutlet UITableViewCell * cell
The table view cell of the logic.
Definition: BCCellLogic.h:19
BoldChat view related settings.
Definition: BoldChatViewSettings.h:52
BoldChatViewSettings * viewSettings
Common view settings.
Definition: BCCellLogic.h:37
IBOutlet UIView * missingView
A view that is visible only if the field is required to be filled, and there was an attempt to submit...
Definition: BCCellLogic.h:25
void loadViewFromNib()
Protected method for lading the view of logic from nib.
BOOL isFilled()
Tests if the field is filled. To be overriden in the subclasses.
Cell logic file behind form cells.
Definition: BCCellLogic.h:13