3 #import <Foundation/Foundation.h>
4 #import <UIKit/UIKit.h>
8 @implementation CYViewController
9 - (void)setDelegate:(id)delegate {
14 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
15 if ([self parentViewController]) {
16 return [[self parentViewController] shouldAutorotateToInterfaceOrientation:orientation];
18 return [super shouldAutorotateToInterfaceOrientation:orientation];