// 系统大于等于7.0 if ([UIDevice currentDevice].systemVersion.floatValue >= 7.0) { url = [NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id88888...
分类:
移动开发 时间:
2014-08-07 18:09:20
阅读次数:
251
//判断是否为ios7
取消控件往上移
if ([[UIDevice
currentDevice].systemVersion
doubleValue] >= 7.0) {
self.edgesForExtendedLayout =
UIRectEdgeNone;
}...
分类:
移动开发 时间:
2014-08-07 15:47:20
阅读次数:
197
if ( [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0){ //check whether the permission open for user in settings AVAuthorizationStatus au....
分类:
移动开发 时间:
2014-08-05 13:32:19
阅读次数:
234
当我们使用imageName这个方法时,我们可以看到图片的提示,而当我们自己写一个UIImage 的扩展的时候,需要用到资源图片时,经常就没有图片资源的提示,例如下面的方法, #define iOS7 ([[UIDevice currentDevice...
分类:
其他好文 时间:
2014-07-22 08:28:34
阅读次数:
668
-(bool)checkDevice:(NSString*)name
{
NSString* deviceType = [UIDevice currentDevice].model;
NSLog(@"deviceType = %@", deviceType);
NSRange range = [deviceType rangeOfString:name];
return range.l...
分类:
移动开发 时间:
2014-07-18 16:37:54
阅读次数:
229
目录[-]一、判断设备二、判断网络连接状态三、设备不显示的解决办法一、判断设备01//设备名称02return[UIDevice currentDevice].name;0304//设备型号,只可得到是何设备,无法得到是第几代设备05return[UIDevice currentDevice].mo...
分类:
移动开发 时间:
2014-07-16 23:04:51
阅读次数:
250
有些时候,我们需要将代码简洁化,这样便于读代码。我们可以将一些不变的东东抽取出来,将变化的东西作为参数。定义为宏,这样在写的时候就简单多了。
下面例举了一些常用的宏定义和大家分享:
1. 判断设备的操作系统是不是ios7
#define IOS7 ( [[[UIDevice currentDevice].systemVersion doubleValue] >= 7.0] )
...
分类:
移动开发 时间:
2014-07-09 09:45:47
阅读次数:
184
//#define IOS7_OR_LATER ( [[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending )- (void)setFrame:(CGRect)frame { if (I...
分类:
其他好文 时间:
2014-06-22 23:54:13
阅读次数:
363
[UIDevice currentDevice].batteryMonitoringEnabled = YES;
double deviceLevel = [UIDevice currentDevice].batteryLevel;获取当前剩余电量, 我们通常采用上述方法。这也是苹果官方文档提供的。它返回的是0.00-1.00之间的浮点值。 另外, -1.00表示模拟器。貌似这个方法不错, 也很...
分类:
移动开发 时间:
2014-06-01 14:57:31
阅读次数:
275