Dimension Panel Container Delegate

Description: delegate of controller used to work with dimension panel container.

The PanelViewDelegateImpl.h File

#import <Foundation/Foundation.h>
#import <MobileAnalysis/PanelViewController.h>

@interface PanelViewDelegateImpl : NSObject <PanelViewDelegate>

@end

The PanelViewDelegateImpl.m File

#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:

Working with Dimension Panel Container (Example 1)