IOS学习(OC语言)知识点整理一、归档与解归档的操作1)归档是一个过程,将一个或多个对象存储起来,以便以后可以还原,包括将对象存入文件,以后再读取 将数据对象归档成plist文件2)plist文件中只能存放:NSString、NSDate、NSNumber、Bool、NSData、NSArray....
分类:
移动开发 时间:
2015-07-12 00:06:01
阅读次数:
132
原创Blog,转载请注明出处
blog.csdn.net/hello_hwc
欢饮关注我的iOS SDK详解专栏
http://blog.csdn.net/column/details/huangwenchen-ios-sdk.html前言:NSCalendar 和 NSDate?Components是有关iOS 时间相关API很重要的两个类。最近刚好用到,这里就整理下。概念
NSCalend...
分类:
移动开发 时间:
2015-07-11 15:10:47
阅读次数:
304
1,获取当前时间
NSDate
*currentDate=[NSDate
date];
NSDateFormatter *dateformatter=[[NSDateFormatter
alloc] init];
[dateformatter
setDateFormat:@"YYYYMMdd"];...
分类:
移动开发 时间:
2015-07-10 11:30:41
阅读次数:
147
创建通知
UILocalNotification *notification = [[UILocalNotification alloc] init];
if (notification)
{
NSDate *now = [NSDate new];
notification.fireDate = [now dateByAddingTimeInt...
分类:
移动开发 时间:
2015-07-07 23:03:43
阅读次数:
412
1 NSDate *newdate=[NSDate date]; 2 //时间格式化字符串 3 NSDateFormatter *formatter = [[NSDateFormatter alloc]init]; 4 [formatter setDateFormat:@"yyyy-MM-dd H....
分类:
移动开发 时间:
2015-07-05 21:04:01
阅读次数:
136
01-时间和毫秒数的相互转换//获取毫秒数的时间戳long inter = [[NSDate date] timeIntervalSince1970]*1000;NSLog(@"%ld",inter);//把毫秒数转换成时间NSDate *date = [NSDate dateWithTimeInt...
分类:
移动开发 时间:
2015-07-03 06:51:07
阅读次数:
216
返回x分钟前/x小时前/昨天/x天前/x个月前/x年前
- (NSString *)timeInfo {
return [NSDate timeInfoWithDate:self];
}
+ (NSString *)timeInfoWithDate:(NSDate *)date {
return [self timeInfoWithDateString:[self st...
分类:
移动开发 时间:
2015-07-02 17:36:48
阅读次数:
151
IOS---如何获取当前的日期和时间,并显示 创建两个UILable: Lable1,Lable2.创建好IBOutlate并连线,然后用如下方法:-(void)updateLabel {NSDate* now = [NSDate date];NSCalendar *cal = [NSCalenda...
分类:
其他好文 时间:
2015-07-02 13:34:14
阅读次数:
281
1.获取系统当前时间NSDate * senddate=[NSDate date];NSDateFormatter *dateformatter=[[NSDateFormatter alloc] init];[dateformatter setDateFormat:@"YYYY-MM-dd HH:m...
分类:
移动开发 时间:
2015-07-01 20:13:24
阅读次数:
159
NSDateNSDate对象用来表示一个具体的时间点。NSDate是一个类簇,我们所使用的NSDate对象,都是NSDate的私有子类的实体。NSDate存储的是GMT时间,使用的时候会根据 当前应用 指定的 时区 进行时间上的增减,以供计算或显示。可以快速地获取的时间点有:now (当前时间...
分类:
移动开发 时间:
2015-07-01 20:06:37
阅读次数:
210