//Set Notification on Orientation change
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:nil];
// Handle orientation change
- (void)orientationChanged:(NSNotification *)notification {
...
}
No comments:
Post a Comment