码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 方向开发

时间:2014-11-06 02:10:21      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:uidevice   ios   

 UIDeviceOrientation orientation;

    orientation = [[UIDevice currentDevice] orientation];

    

    switch (orientation) {

        case UIDeviceOrientationFaceUp:

            self.orientationLabel.text=@"Face Up";

            break;

        case UIDeviceOrientationFaceDown:

            self.orientationLabel.text=@"Face Down";

            break;

        case UIDeviceOrientationPortrait:

            self.orientationLabel.text=@"Standing Up";

            break;

        case UIDeviceOrientationPortraitUpsideDown:

            self.orientationLabel.text=@"Upside Down";

            break;

        case UIDeviceOrientationLandscapeLeft:

            self.orientationLabel.text=@"Left Side";

            break;

        case UIDeviceOrientationLandscapeRight:

            self.orientationLabel.text=@"Right Side";

            break;

        default:

            self.orientationLabel.text=@"Unknown";

            break;

    }


本文出自 “深圳市联城通科技公司” 博客,谢绝转载!

IOS 方向开发

标签:uidevice   ios   

原文地址:http://roderickkennedy.blog.51cto.com/6758427/1572747

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