diff --git a/ViewControllerContainment/ViewControllerContainment/VCCManualCallbacksViewController.m b/ViewControllerContainment/ViewControllerContainment/VCCManualCallbacksViewController.m index 9ae3dee..2ec1ab9 100644 --- a/ViewControllerContainment/ViewControllerContainment/VCCManualCallbacksViewController.m +++ b/ViewControllerContainment/ViewControllerContainment/VCCManualCallbacksViewController.m @@ -29,7 +29,7 @@ return self; } -#pragma mark - Overriden (Appearanca Callbacks) +#pragma mark - Overriden (Appearance Callbacks) - (void)viewWillAppear:(BOOL)animated { @@ -55,6 +55,23 @@ NGLogMessage(); } +#pragma mark - Overriden (Rotation Callbacks) + +- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration +{ + NGLogMessage(); +} + +- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation +{ + NGLogMessage(); +} + +- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration +{ + NGLogMessage(); +} + #pragma mark - Private Properties #pragma mark - Private Methods #pragma mark - OtherPerfectClassDelegate