Today's Menu  Portugal
journal and plan nutrition
V7foodTextFieldView.h
Go to the documentation of this file.
1 //
2 // V7foodTextFieldView.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 6/22/18.
6 // Copyright © 2018 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
11 #import "Z6ContainedView.h"
12 
13 @interface V7foodTextFieldView : UIView <Z6ContainedView>
14 
15 typedef enum {
20 } USDAFoodDatabaseStatus;
21 
22 @property (strong, nonatomic) UITextField *foodTextField;
23 
24 - (instancetype) initWithDelegate: (id<V7foodTextFieldDelegate>) dele;
25 - (void) showUSDAFoodDatabaseResponse:(USDAFoodDatabaseStatus)flag;
26 
27 @end