Mobile Application > iOS Components > Examples of Component Use > The Mobile Application Component > Working with Dimension Panel Container (Example 1) > PanelViewDelegateImpl.h/.m
Description: delegate of controller used to work with dimension panel container.
#import <Foundation/Foundation.h> #import <MobileAnalysis/PanelViewController.h> @interface PanelViewDelegateImpl : NSObject <PanelViewDelegate> @end
#import "PanelViewDelegateImpl.h" @implementation PanelViewDelegateImpl // Used for reacting to dimension panel display - (void) panelViewDidShow: (PanelViewController *) panelController { NSLog(@"Dimension panel container is displayed"); } // Used for reacting to dimension panel hiding - (void) panelViewDidHide: (PanelViewController *) panelController { NSLog(@"Dimension panel container is hidden"); } @end
See also: