iPhone 判断设备是在Portrait(纵向)还是(Landscape)横向
2010-12-19 07:19:32 来源:WEB开发网核心提示:UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;if (UIDeviceOrientationIsLandscape(deviceOrientation) ) {//横向}else if (UIDeviceOrie
UIDeviceOrientation deviceOrientation = [UIDevice currentDevice].orientation;
if (UIDeviceOrientationIsLandscape(deviceOrientation) ) {
//横向
}
else if (UIDeviceOrientationIsPortrait(deviceOrientation) ) {
//纵向
}
如果要检测四个方向,不能用UIDeviceOrientationIsLandscape和UIDeviceOrientationIsPortrait这两个函数了。
- ››判断Javascript 是否存在函数
- ››iphone图片拉伸的几种方法
- ››iphone正则表达式的简单使用
- ››iPhone开发Unresolved Symbols CAKeyframeAnimati...
- ››IPhone开发-“此证书是由未知颁发机构签名”解决方...
- ››IPhone开发-整合私钥和证书,生成.p12文件
- ››iPhone应用开发-UIPickerView选取器详解
- ››iphone 获取屏幕的宽度和高度
- ››iPhone读取工程包中的二进制文件
- ››iPhone新手机 不挂YouTube APP
- ››iPhone 获取指定格式的时间和日期
- ››判断一个类是否为基本数据类型
更多精彩
赞助商链接