Today's Menu  Portugal
journal and plan nutrition
U5MealPanoramaView.h
Go to the documentation of this file.
1 //
2 // U5MealPanoramaView.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 1/1/19.
6 // Copyright © 2019 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
12 #import "Z6ContainingView.h"
13 #import "Z6ContainedView.h"
14 
15 NS_ASSUME_NONNULL_BEGIN
16 
17 @protocol Z6MealPanoramaDelegate <Z6ContainingView>
18 - (void) clickedMeal: (Meal *)meal atRow: (NSUInteger)row;
19 @end
20 
21 @interface U5MealPanoramaView : UIView <UICollectionViewDelegateFlowLayout, UICollectionViewDataSource, Z6ContainedView>
22 
23 @property (strong, nonatomic) NSMutableArray<Meal *> *snapMeals;
24 @property (strong, nonatomic) Meal *focusSnapMeal;
25 
26 + (NSValue *) mealCellDefaultSize;
27 
28 - (instancetype) initWithFrame:(CGRect)frame andDelegate:(id<Z6MealPanoramaDelegate>)delegate;
29 - (void) reloadMeals;
30 
31 @end
32 
33 NS_ASSUME_NONNULL_END
NSValue * mealCellDefaultSize()
NSMutableArray< Meal * > * snapMeals