Add logging in rotation callbacks

This commit is contained in:
Wojciech Nagrodzki 2013-04-05 14:59:36 +02:00
parent e41995825f
commit f43aa5743b
Signed by: wnagrodzki
GPG key ID: E9D0EB0302264569

View file

@ -29,7 +29,7 @@
return self; return self;
} }
#pragma mark - Overriden (Appearanca Callbacks) #pragma mark - Overriden (Appearance Callbacks)
- (void)viewWillAppear:(BOOL)animated - (void)viewWillAppear:(BOOL)animated
{ {
@ -55,6 +55,23 @@
NGLogMessage(); 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 Properties
#pragma mark - Private Methods #pragma mark - Private Methods
#pragma mark - OtherPerfectClassDelegate #pragma mark - OtherPerfectClassDelegate