mirror of
https://github.com/wnagrodzki/ViewControllerContainment.git
synced 2025-04-05 20:01:57 +02:00
Add logging in rotation callbacks
This commit is contained in:
parent
e41995825f
commit
f43aa5743b
1 changed files with 18 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue