码迷,mamicode.com
首页 >  
搜索关键字:nsdate    ( 553个结果
OC基础--常用类的初步介绍与简单使用之NSDate
一、创建一个时间 NSDate *date = [NSDate date]; // 打印出的时间是0时区的时间(北京--东八区) NSLog(@"%@",date); 二、日期格式化类NSDateFormatter 1>日期转化字符串 1 // 创建一个NSDate对象 2 NSDate *date
分类:其他好文   时间:2016-02-28 16:36:15    阅读次数:123
iOS图标抖动效果
开始抖动 -(void)BeginWobble { srand([[NSDate date] timeIntervalSince1970]); float rand=(float)random(); CFTimeInterval t=rand*0.0000000001; [UIView animat
分类:移动开发   时间:2016-02-27 19:22:53    阅读次数:234
Foundation框架下的常用类(NSNumber, NSValue, NSDate,NSDateFormatter)
1.NSNumber 将基础数类型数据转成对象数据(比如int float double BOOL long等等) //通过NSNumber将基础数类型数据转成对象数据。 NSNumber * intNumber = [[NSNumber alloc] initWithInt:50]; NSNumb
分类:其他好文   时间:2016-02-25 00:17:05    阅读次数:312
iOS 从真机中拿取文件
第一步 第二步,添加代码 1 //写入文件 2 -(void)writeOxy_RAWdata:(NSString *)dataStr; 3 { 4 NSDate * senddate=[NSDate date]; 5 NSDateFormatter *dateformatter=[[NSDateF
分类:移动开发   时间:2016-02-22 15:30:23    阅读次数:167
iOS NSUserDefaults的基本使用
/** * NSUserDefaults可以进行轻量级的数据存储 * NSUserDefaults支持的数据类型: NSString, NSNumber, NSDate, NSArray, * NSDictionary */ //初始化NSUserDefaults NSUserDefaults *d
分类:移动开发   时间:2016-02-21 22:38:30    阅读次数:238
时间格式
//获取现在时间的秒钟分钟时钟数 NSDate * date=[[NSDate alloc]init]; NSDateFormatter * format1=[[NSDateFormatter alloc]init]; [format1 setDateFormat:@"HH"];//@"hh"为小于
分类:其他好文   时间:2016-02-20 00:23:26    阅读次数:132
NSDate详解及获取当前时间等常用操作
NSDate类用于保存时间值,同时提供了一些方法来处理一些基于秒级别时差(Time Interval)运算和日期之间的早晚比较等。 1. 创建或初始化可用以下方法 用于创建NSDate实例的类方法有 + (id)date; 返回当前时间 + (id)dateWithTimeIntervalSince
分类:其他好文   时间:2016-02-18 13:46:44    阅读次数:162
OC中传入参数,返回多值(一)
看看先: // 日期格式化对象 NSDateFormatter *fmt = [[NSDateFormatter alloc] init]; // 设置日期格式 fmt.dateFormat = @"yyyy-MM-dd HH:mm:ss"; // 2个日期对象 NSDate *date1 = [f
分类:其他好文   时间:2016-02-18 00:06:44    阅读次数:406
定时提醒实现
UILocalNotification *notification=[[UILocalNotification alloc] init]; if (notification!=nil) { NSDate *now=[NSDate new]; //notification.fireDate=[now
分类:其他好文   时间:2016-02-17 13:04:47    阅读次数:156
iOS闹钟实现
UILocalNotification *notification=[[UILocalNotification alloc] init]; if (notification!=nil) { NSDate *now=[NSDate new]; //notification.fireDate=[now
分类:移动开发   时间:2016-02-17 11:07:33    阅读次数:182
553条   上一页 1 ... 14 15 16 17 18 ... 56 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!