Friday, July 25, 2014

Set notification for Orientation

//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