码迷,mamicode.com
首页 > 其他好文 > 详细

ipad屏幕旋转后的代理

时间:2016-01-16 11:58:37      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

- (void)statusBarOrientationChange:(NSNotification *)notification
{
   
    UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
    if (orientation == UIInterfaceOrientationLandscapeRight) // home键靠右
    {
       
    }
   
    if (orientation ==UIInterfaceOrientationLandscapeLeft) // home键靠左
    {
       
    }
   
    if (orientation == UIInterfaceOrientationPortrait)
    {
        NSLog(@"normal");
    }
   
    if (orientation == UIInterfaceOrientationPortraitUpsideDown)
    {
        NSLog(@"down");
    }
}

ipad屏幕旋转后的代理

标签:

原文地址:http://www.cnblogs.com/lisjie/p/5135071.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!