//手机序列号 //NSString* identifierNumber = [[UIDevice currentDevice] uniqueIdentifier]; //NSLog(@"手机序列号: %@",identifierNumber); [[[UIDevice currentD...
分类:
移动开发 时间:
2015-01-26 19:07:05
阅读次数:
157
维护一个程序,当手机升级到ios8之后就不能接收到远程推送,显示注册失败,查了下资料,原来是没有获取用户许可,加了个方法试了下,ok
if ([[[UIDevice currentDevice]systemVersion ]integerValue] >= 8) {
UIUserNotificationSettings*setting = [UIUserNoti...
分类:
移动开发 时间:
2015-01-22 20:17:44
阅读次数:
138
方法一
首先计算出字符串在已知宽度的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
强制转成横屏:if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { SEL selector = NSSelectorFromString(@"setOrientation...
分类:
移动开发 时间:
2015-01-08 12:42:01
阅读次数:
173
判断当前设备的系统信息#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
NSString *strname=[[UIDevice currentDevice] name]; NSLog(@"设备名:%@",strname); NSString *strSysName = [[UIDevice currentDevice] systemName]; NSLog...
分类:
移动开发 时间:
2014-12-19 23:18:17
阅读次数:
178
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做推送功能时,最烦得就是各种证书的问题,以前自己做的时候经常要反复搞那些证书搞好几遍才能成功,现在发现归根到底都是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