iOS屏幕旋转通知

    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(changeRotate:) name:UIApplicationDidChangeStatusBarFrameNotification object:nil];

- (void)changeRotate:(NSNotification *)noti {
    
    
}

Guess you like

Origin blog.csdn.net/LIUXIAOXIAOBO/article/details/121126862