Today's Menu  Portugal
journal and plan nutrition
U3ParameterTableView.h
Go to the documentation of this file.
1 //
2 // U3ParameterTableView.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 9/7/16.
6 // Copyright © 2016 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
13 #import "Z6ContainedView.h"
14 
15 @interface U3ParameterTableView : UITableView <UITableViewDelegate, UITableViewDataSource>
16 @property (strong, nonatomic) NSMutableArray<NSDictionary *> *givenParameters;
17 @property (strong, nonatomic) id<U3ParameterTableDelegate> givenContainer;
18 
19 - (id) initWithFrame:(CGRect)frame
20  andComponents:(NSArray *)components
21  inContainer:(id<U3ParameterTableDelegate>)container;
22 - (void) addParameter: (NSDictionary *)newComponentSpecDict;
23 - (void) updateParameter: (NSDictionary *)newComponentSpecDict;
24 - (NSInteger) isListedAlready: (NSString *)checkCaption;
25 - (void) update:(NSArray<NSDictionary *> *)components;
26 - (float) getViewHeightReqmt;
27 - (void) scrollInitially;
28 - (void) scrollForControlPanel;
30 - (NSUInteger) parameterCount;
31 
32 - (void) setViewForHead: (UIView *) headView;
33 - (void) setViewForTail: (UIView<Z6ContainedView> *) tailView;
34 
35 
36 @end
NSMutableArray< NSDictionary * > * givenParameters
id< U3ParameterTableDelegate > givenContainer