Today's Menu  Portugal
journal and plan nutrition
ZOrientProtocol.h
Go to the documentation of this file.
1 //
2 // ZOrientProtocol.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 3/12/19.
6 // Copyright © 2019 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
13 @protocol ZOrientProtocol <NSObject>
14 
15 - (void) orientLoadUI;
16 - (void) orientAppearUI;
17 - (void) viewDidLoadPortrait;
18 - (void) viewDidLoadLandscape;
19 - (void) viewDidAppearPortrait;
20 - (void) viewDidAppearLandscape;
21 - (void) positionFramesPortrait;
22 - (void) positionFramesLandscape;
23 
24 @end
25 
26 NS_ASSUME_NONNULL_END