码迷,mamicode.com
首页 >  
搜索关键字:currentdevice    ( 174个结果
获取IOS中一些系统信息
//手机序列号 //NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]; //NSLog(@"手机序列号: %@",identifierNumber); [[[UIDevice currentD...
分类:移动开发   时间:2015-01-26 19:07:05    阅读次数:157
ios (推送之远程推送)升级成ios8系统之后有些程序接收不到远程推送
维护一个程序,当手机升级到ios8之后就不能接收到远程推送,显示注册失败,查了下资料,原来是没有获取用户许可,加了个方法试了下,ok if ([[[UIDevice currentDevice]systemVersion ]integerValue] >= 8) { UIUserNotificationSettings*setting = [UIUserNoti...
分类:移动开发   时间:2015-01-22 20:17:44    阅读次数:138
UILabel的高度(height)自适应文字内容(text)
方法一 首先计算出字符串在已知宽度的View中的size,然后改变View的size就可以。 示例代码如下: #define IOS7_OR_LATER ( [[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending ) CGSize size; NSString *strTail = ...
分类:其他好文   时间:2015-01-12 16:40:42    阅读次数:390
iOS 强制转成横屏的方式 和 通过设备的状态来切换屏幕
强制转成横屏:if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { SEL selector = NSSelectorFromString(@"setOrientation...
分类:移动开发   时间:2015-01-08 12:42:01    阅读次数:173
iOS8下tableView的cell下划线不能从0开始的问题
判断当前设备的系统信息#define isIOS8 ([[[UIDevice currentDevice] systemVersion] hasPrefix:@"8"])iOS8下用下面的方法- (void)setInset:(UITableView *)view cell:(UITableView...
分类:移动开发   时间:2014-12-26 12:45:13    阅读次数:200
强制横屏和竖屏
-(void)viewWillAppear:(BOOL)animated{ [[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:UIDeviceOrientationLandscapeLeft] forKey:@"ori...
分类:其他好文   时间:2014-12-24 17:47:49    阅读次数:103
ios显示手机信息
NSString *strname=[[UIDevice currentDevice] name]; NSLog(@"设备名:%@",strname); NSString *strSysName = [[UIDevice currentDevice] systemName]; NSLog...
分类:移动开发   时间:2014-12-19 23:18:17    阅读次数:178
ios8.0 ipad UIImagePickerController
Warning: Attempt to present UIImagePickerController: 0x7c0ae400> on CAGUCreateContactViewController: 0x7bf61a00> which is already presenting (null) 解决办法 if([[[UIDevice currentDevice...
分类:移动开发   时间:2014-12-18 18:52:51    阅读次数:209
iOS 推送小记
ios做推送功能时,最烦得就是各种证书的问题,以前自己做的时候经常要反复搞那些证书搞好几遍才能成功,现在发现归根到底都是appid这个东西搞错了,做个笔记记下来,以免忘了。首先是程序里面注册推送的变化,ios8之后改了注册方法,用此方法注册if ([[[UIDevice currentDevice]...
分类:移动开发   时间:2014-12-17 15:58:16    阅读次数:191
获取设备唯一标识
_currentDeviceID = [[self getDeviceID] UUIDString];// 1、获取设备唯一标识:- (NSUUID*) getDeviceID{ UIDevice *device = [UIDevice currentDevice]; return device.....
分类:其他好文   时间:2014-12-10 17:58:40    阅读次数:161
174条   上一页 1 ... 11 12 13 14 15 ... 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!