Bold360 and BoldChat Developer Center

BCFormViewLogic.h

1 //
2 // Copyright (c) 2014 LogMeIn Inc. All rights reserved.
3 //
4 
5 #import <Foundation/Foundation.h>
6 #import <UIKit/UIKit.h>
7 
12 @interface BCFormViewLogic : NSObject
13 
18 @property(nonatomic, strong)IBOutlet UIView *view;
19 
24 @property(nonatomic, strong)IBOutlet UITableView *tableView;
25 
30 @property(nonatomic, strong)IBOutlet UIButton *formExternalActionButton;
31 
37 
38 @end
IBOutlet UIView * view
The form view.
Definition: BCFormViewLogic.h:18
IBOutlet UIButton * formExternalActionButton
A button which needs to call formExternalActionButtonPressed. If the view controller does not have an...
Definition: BCFormViewLogic.h:30
The logic of the form views.
Definition: BCFormViewLogic.h:12
IBAction formExternalActionButtonPressed()
IBAction for the formExternalActionButton.
IBOutlet UITableView * tableView
The table view on the form view.
Definition: BCFormViewLogic.h:24