Today's Menu  Portugal
journal and plan nutrition
U3MenuTableDelegate.h
Go to the documentation of this file.
1 //
2 // U3MenuTableDelegate.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 9/20/16.
6 // Copyright © 2016 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @protocol U3MenuTableDelegate <NSObject>
12 
13 - (NSDate *) dateForHeader;
14 - (Boolean) hasFooter;
15 - (void) updatedMenuItemArray:(NSArray *)menuItemArray;
16 - (float) resizeMenuItemFrame;
17 - (void) didSelectMenuItemRow:(NSIndexPath *) index;
18 - (void) didTapBravoFooter;
19 - (void) didTapNetworkFooter;
20 
21 @end