NSBundle.mainBundle().infoDictionaryiOS 8中带按钮的推送代码 1 if ( UIDevice.currentDevice().systemVersion.hasPrefix("7") ){ 2 3 applic...
分类:
移动开发 时间:
2014-09-19 15:27:45
阅读次数:
185
+ (UIDevice *)currentDevice;@property(nonatomic,readonly,retain) NSString *name; // e.g. "My iPhone"@property(nonatomic,readonly,retain) NSStri...
分类:
移动开发 时间:
2014-09-12 16:45:03
阅读次数:
336
NSString *saved = _name.text;
CGSize size = CGSizeZero;
if ([[[UIDevice
currentDevice] systemVersion]
floatValue] >=7.0) {
size = [saved boundingRectWithSize:CGSizeMake(150, 70)
...
分类:
移动开发 时间:
2014-09-11 11:10:41
阅读次数:
170
[[UIDevice currentDevice] setProximityMonitoringEnabled:YES]; //建议在播放之前设置yes,播放结束设置NO,这个功能是开启红外感应
//添加监听
[[NSNotificationCenter defaultCenter] addObserver:self
...
分类:
移动开发 时间:
2014-08-29 18:27:48
阅读次数:
280
1,if ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0) { [application setStatusBarStyle:UIStatusBarStyleDefault]; } else { [applica...
分类:
移动开发 时间:
2014-08-29 12:35:47
阅读次数:
164
转载自:http://www.2cto.com/kf/201210/162333.html网上搜索出来的,记录下来以后使用方便:[java]//手机序列号 NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]...
分类:
移动开发 时间:
2014-08-14 20:29:19
阅读次数:
207
//iOS7和其他系统版本跳转链接不一样- (void)clickUrl:(id)sender{ UIButton *bt = (UIButton *)sender; NSString *str = @""; if( ([[[UIDevice currentDevi...
分类:
移动开发 时间:
2014-08-14 01:05:37
阅读次数:
254
ios7.0中视图控制器中视图坐标布局问题 if ([[[UIDevice currentDevice] systemVersion] floatValue]>=7.0) { self.edgesForExtendedLayout=UIRectEdgeNone;//ios 7中不调整屏...
分类:
移动开发 时间:
2014-08-12 18:30:44
阅读次数:
211
// 系统大于等于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